using FlowerShopDatabaseImplement.Models; using Microsoft.EntityFrameworkCore; namespace FlowerShopDatabaseImplement { public class FlowerShopDatabase : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { if (optionsBuilder.IsConfigured == false) { optionsBuilder.UseNpgsql(@"Host=localhost;Database=FlowerShopHardDatabaseTestFull;Username=postgres;Password=postgres"); } base.OnConfiguring(optionsBuilder); AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true); AppContext.SetSwitch("Npgsql.DisableDateTimeInfinityConversions", true); } public virtual DbSet Components { set; get; } public virtual DbSet Flowers { set; get; } public virtual DbSet FlowerComponents { set; get; } public virtual DbSet Orders { set; get; } public virtual DbSet Shops { set; get; } public virtual DbSet ShopFlowers { set; get; } public virtual DbSet Clients { set; get; } } }