In my solution, I have created public class to store value and already declare [DataContract/DataMember] attribute.
Is the System.Tuple class supported by WCF\'s Data Contract Serializer (i.e., can I pass Tuple objects t开发者_开发知识库o WCF calls and/or receive them as part or all of the result)?
Ho开发者_如何学编程w would I represent something like this <product> <sku>12452</sku>
I have a very simple class called person. public class Person{ [DataMember(Name="MyName")] public string Name { get;set;}
Ok, so I was part way through the long winded process of creating DTOs for sending my model over the wire and I don\'t feel like I\'m going down the right route.