Skip to content

Instantly share code, notes, and snippets.

Created July 29, 2014 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/b45dfa325e786a19ff5f to your computer and use it in GitHub Desktop.
Save anonymous/b45dfa325e786a19ff5f to your computer and use it in GitHub Desktop.
Subscription sub = new Subscription
{
Title = "Accidental Tech Podcast",
Description = "Nerd stuff"
};
await App.db.InsertAsync(sub).ContinueWith((t) =>
{
Debug.WriteLine("{0} : {1} {2}", sub.Id, sub.Title, sub.Description);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment