using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace UnicornStore.Models { public class ApplicationUser : IdentityUser { } public class UnicornStoreContext : IdentityDbContext { public UnicornStoreContext(DbContextOptions options) : base(options) { // TODO: #639 //ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking; } public DbSet Blessings { get; set; } public DbSet Unicorns { get; set; } public DbSet Orders { get; set; } public DbSet Genres { get; set; } public DbSet CartItems { get; set; } public DbSet OrderDetails { get; set; } } }