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 string
s.
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 DataGrid
s showing our application.
Points of Interest
Note that we have two DataGrid
s 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.