Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Custom DomainService Metadata Properties

0.00/5 (No votes)
29 Jul 2012 1  
This brief tutorial pretends to demonstrate how to add custom properties inside DomainService's metadata class

Introduction

This tip simply adds a custom property in the metadata generated by the DomainService metadata.

Many times, we need to add some extra properties in our metadata generated, for example, when we have to calculate something or concatenate some strings.

So, let's get started with this.

The Normal Feature

In this case, we must create a Silverlight Business Application. So, we concentrate on the ASP.NET Web Project. After that, we need to create a database file with two tables. Just like this:

At this point, we need to create the ADO.NET Entity Data Model, the Domain Service class and the metadata for that Domain Service. So, the Web ASP.NET Application looks like:

In the DomainService1.metadata.cs, you should replace the implementation of GetCities() method. Add these lines of code:

public IQueryable<City> GetCities()
{
    return this.ObjectContext.Cities.Include("Country").OrderBy(c=>c.CityName);
}

Just finished this part of the tutorial.

Using the Code

Now in our Silverlight Application project, expand Views/Home.xaml and open it. After that, just add the following XAML code:

<navigation:Page.Resources>
    <riacontrols:DomainDataSource x:Key="cityDDS" AutoLoad="True" QueryName="GetCities" >
        <riacontrols:DomainDataSource.DomainContext>
            <data:DomainService1 />
        </riacontrols:DomainDataSource.DomainContext>            
    </riacontrols:DomainDataSource>
</navigation:Page.Resources>
<sdk:DataGrid Grid.Row="0" 
AutoGenerateColumns="False" Margin="10" 
ItemsSource="{Binding Source={StaticResource cityDDS}, Path=Data}">
      <sdk:DataGrid.Columns>
          <sdk:DataGridTextColumn Header="CityID" 
          Binding="{Binding CityID}" />
          <sdk:DataGridTextColumn Header="City Name" 
          Binding="{Binding CityName}" />
          <sdk:DataGridTextColumn Header="Country Name" 
          Binding="{Binding Country.CountryName}" />
          <sdk:DataGridTextColumn Header="CountryID" 
          Binding="{Binding Country.CountryID}" />
      </sdk:DataGrid.Columns>
</sdk:DataGrid>

In the code above, we add a simple DataGrid showing simple data that we retrieve from the Web project via WCF RIA Services.

So, we go back to the Web project and add our Metadata extension(DomainService1.partial.cs) just like this:

using System.Runtime.Serialization;

namespace MetadataExtension.Web
{
    public partial class City
    {
        [DataMember]
        public string CityData
        {
            get { return this.CityID.ToString() + " - " + this.CityName;}
        }
    }

    public partial class Country
    {
        [DataMember]
        public string CountryData
        {
            get { return this.CountryID.ToString() + " - " + this.CountryName;}
        }
    }
} 

In the code above, you must note that we add a partial class to share the existing properties on the metadata class.

Now, we need to compile our Web project and we haven't got any error.

In our Home.xaml file, we add the following lines of XAML code:

<sdk:DataGrid Grid.Row="1" AutoGenerateColumns="False" 
Margin="10" ItemsSource="{Binding Source={StaticResource cityDDS}, Path=Data}">
     <sdk:DataGrid.Columns>
         <sdk:DataGridTextColumn Header="CityID" 
         Binding="{Binding CityData}" />
         <sdk:DataGridTextColumn Header="Country Name" 
         Binding="{Binding Country.CountryData}" />
     </sdk:DataGrid.Columns>
</sdk:DataGrid> 

After that, we can Run our project (F5) and see our two DataGrids showing our application.

Points of Interest

Note that we have two DataGrids in our demo. The first one shows the data directly from our DomainService metadata. The last DataGrid shows the data through the custom metadata property located on the Web project: DomainService.partial.cs file.

So, I hope you can find this brief tutorial useful. The usage of this technique is very important in some situations.

What's Next

Nothing. Just comment, rate and bookmark it if you like.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here