Created
April 4, 2018 12:25
-
-
Save talkingdotnet/4a05dfa1f1d6b812498c7033d2a36d01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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