Skip to content

Instantly share code, notes, and snippets.

@mikebrind
Created August 15, 2018 07:27
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 mikebrind/679ccb91841b6d919cb1982cf032ef20 to your computer and use it in GitHub Desktop.
Save mikebrind/679ccb91841b6d919cb1982cf032ef20 to your computer and use it in GitHub Desktop.
public class SampleContext : DbContext
{
public DbSet<Order> Orders { get; set; }
public DbSet<OrderItem> OrderItems { get; set; }
public DbSet<Customer> Customers { get; set; }
public DbQuery<OrderHeader> OrderHeaders { get; set; }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment