Skip to content

Instantly share code, notes, and snippets.

@dimlucas
Created October 21, 2018 07:56
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 dimlucas/b03ba399b3132ff8317ab63f1caa51b0 to your computer and use it in GitHub Desktop.
Save dimlucas/b03ba399b3132ff8317ab63f1caa51b0 to your computer and use it in GitHub Desktop.
public class AppDbContext : DbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options)
{
}
public DbSet<ToDo> ToDos { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment