Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active October 21, 2020 22:06
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 dcomartin/d96dfb5f1a4b708cf50ef3667607dbd1 to your computer and use it in GitHub Desktop.
Save dcomartin/d96dfb5f1a4b708cf50ef3667607dbd1 to your computer and use it in GitHub Desktop.
using Microsoft.EntityFrameworkCore;
namespace Sales
{
public class SalesDbContext : DbContext
{
public DbSet<Order> Orders { get; set; }
public DbSet<ProductModel> Products { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment