Sharing Entities between WCF and Silverlight One thing that often comes up when developing Silverlight applications is the desire to share entity classes between Silverlight and server-side code in WCF.
.NET RIA Services handles the sharing for us automatically. But you’ll find yourself needing the functionality in cases where you’re simply not using .NET RIA Services.
Sharing in WCF happens by default when you mark up your entities using [DataContract] and [DataMember] attributes. However, I find p...
No comments yet, be the first one to post comment.