Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created April 4, 2018 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingdotnet/4a05dfa1f1d6b812498c7033d2a36d01 to your computer and use it in GitHub Desktop.
Save talkingdotnet/4a05dfa1f1d6b812498c7033d2a36d01 to your computer and use it in GitHub Desktop.
public class ToDoListContext : DbContext
{
public ToDoListContext(DbContextOptions<ToDoListContext> options) : base(options) { }
public DbSet<ToDoList> ToDoLists { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment