Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class ApplicationDbContext : DbContext
  2. {
  3. public ApplicationDbContext(DbContextOptions options) : base(options)
  4. {
  5. }
  6.  
  7. protected override void OnModelCreating(ModelBuilder modelBuilder)
  8. {
  9. modelBuilder
  10. .ApplyConfiguration(new CustomerConfiguration())
  11. .ApplyConfiguration(new CarConfiguration())
  12. .ApplyConfiguration(new EngineConfiguration());
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement