I'm fairly proficient with WCF, I've been using it for a few years now. I have older ASMX web services we're converting to WCF and will use a basicHttp binding on our mobile apps for iPhone, Android, etc. using Xamarin's MonoTouch and Mono for Android tools. With ASMX it was easy passing DataSets back and forth and it worked well. I realize I can do this in WCF and use [WebMethod] attributes if needed. In using the Silverlight SDK slsvcutil to create the classes from the WCF services I noticed that DataSets are serialized not as System.Data.DataSet but instead an Array of XML Entities or something to that effect.
So I'm thinking of a different strategy and not using DataSets at all but instead passing DataContracts instead in an ORM style of programming. For example we have an Entity on the iPhone (in CoreData) we'll call it Address. I'm thinking instead we'll just make the Address a DataContract and the properties/fields DataMembers and then pass a List over the service (OperationContract).
Do you think this is more efficient and better than DataSet? The second part of this problem is making this efficient in passing everything in one round trip, i.e. we have 30 tables (entities) so we probably need one wrapper DataContract such as AppData and within that have List and List members so they can all be "packaged" for lack of a better term.
How would you suggest going about this? I can either fix the serialization issue and stick with DataSet or move towards using collections and DataContracts?
The other issue is the server side code required to process the collections efficiently where the DataSet uses DataAdapters which is nice.
Thank you for your feedback and suggestions on other approaches to handle this.