Inserting an object is pretty straight forward:
App.MobileService.GetTable<client>().InsertAsync(newclient);
But how would I go about inserting a List of objects?
Is there some sort of begin and commit?
I'm trying to avoid looping through the above method to pass it one by one.