hi
1. sample: my app windows mobile with local storage SQLCE. what is the best option? Webervice with webmethod or microsoft sync framework?.
2. For webservice, the webmethod with input parameters List<object> for retrieve object collection, sample:
send various object type.
List<object> objectSyn = new List<object> ();
//app WM
objectSync.Add( new Client{
Id= 1,
Name="Erick",
Age= 23
});
objectSync.Add( new Sale{
Date="12/12/2010",
Price=200
});
//webservice
public void Register(List<object> objects){
//code for save registers in database
}
thanks