Skip to content

Instantly share code, notes, and snippets.

@christopherhouse
Last active December 31, 2015 06:39
Show Gist options
  • Save christopherhouse/7949332 to your computer and use it in GitHub Desktop.
Save christopherhouse/7949332 to your computer and use it in GitHub Desktop.
public async Task DoInsert()
{
using (MobileServiceClient client = new MobileServiceClient(URL, KEY))
{
var table = client.GetTable<EntityType>();
var entity = new EntityType();
await table.InsertAsync(entity);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment