Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Created February 6, 2018 06:55
Show Gist options
  • Save gmartinezsan/cc67fdacb654ee958fe28e5ca9b2ba7d to your computer and use it in GitHub Desktop.
Save gmartinezsan/cc67fdacb654ee958fe28e5ca9b2ba7d to your computer and use it in GitHub Desktop.
public class BooksCatalogDbContext : IdentityDbContext
{
public BooksCatalogDbContext(DbContextOptions<BooksCatalogDbContext> options)
: base(options)
{
}
public DbSet<Book> Books { get; set; }
public DbSet<Category> Categories { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment