Microsoft simplifies the integration of n-tier application development in Rich Internet Application by introducing WCF RIA Services. WCF RIA (also called Domain services) is traditional n-tires application pattern, used with RIA such as Silverlight and it can be used as middle tier.To know more about WCF RIA Service please refer to the following link.http://msdn.microsoft.com/en-us/library/ee707344%28v=vs.91%29.aspxSteps for creating such an application are below.
In the attached Silverlight project we a create a custom method to get the customer from its id.public CustomerMaster GetCustomerFromId(int customerId){ return this.ObjectContext.CustomerMasters.Where(d => d.CustomerId == customerId).FirstOrDefault();}After completion of the web project, you may access this method in Silverlight project.
Silverlight Application With RIA Service
Checkbox Inside Listbox to Select Multiple Items in Silverlight Using MVVM
Very useful articles
Thanks to all reviewers.
Thanks
it's really helpful and useful