Answered Insert a List of objects?

  • Sunday, September 02, 2012 5:56 PM
     
     
    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.

All Replies