Skip to content

Instantly share code, notes, and snippets.

@PaulDuffy3
Created August 9, 2016 02:52
Show Gist options
  • Save PaulDuffy3/651a1acbf19c229d5706835253ece588 to your computer and use it in GitHub Desktop.
Save PaulDuffy3/651a1acbf19c229d5706835253ece588 to your computer and use it in GitHub Desktop.
ASP.NET Core 1 NPoco Add
public User Add(User user)
{
db.BeginTransaction();
db.Insert(user);
db.CompleteTransaction();
return user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment