Skip to content

Instantly share code, notes, and snippets.

@ouzdev
Created July 3, 2021 17:56
Show Gist options
  • Save ouzdev/d8f28dba1bec327f36bc784236081d98 to your computer and use it in GitHub Desktop.
Save ouzdev/d8f28dba1bec327f36bc784236081d98 to your computer and use it in GitHub Desktop.
public class ProductDbContext:DbContext{
public ProductDbContext(DbContextOptions context):base(context)
{
}
public DbSet<Product> Products{get;set;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment