Skip to content

Instantly share code, notes, and snippets.

@masoodwasim
Last active February 29, 2020 18:22
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 masoodwasim/c21b21d0f2d9f3d2fb3346fdb1e1af77 to your computer and use it in GitHub Desktop.
Save masoodwasim/c21b21d0f2d9f3d2fb3346fdb1e1af77 to your computer and use it in GitHub Desktop.
public class SampleDBContext : DbContext
{
public SampleDBContext(DbContextOptions<SampleDBContext> options)
: base(options)
{
}
public DbSet<BookModel> BooksDbSet { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment