Hi,
The application I am working uses a Silverlight on the client side and gets data from a database using the LINQ to SQL object explosed through a contract as in WCF.
I am trying to add a property to the object of a LINQ query result as follows:
public partial class Linq_data_class
{
public String NewProperty { get; set; }
}
This property is not present in the database I am accessing.
I tried accessing the property in the Page.xaml.cs, but am not able to. What am I doing wrong?
Thanks...