I use one model for several tables, but when I create the tables, only one of them is created. Why is that and can it be changed?
public DbSet<ShopItemProperty_Model> Champagne_TBL { get; set; }
public DbSet<ShopItemProperty_Model> Gin_TBL { get; set; }
public DbSet<ShopItemProperty_Model> Rum_TBL { get; set; }
public DbSet<ShopItemProperty_Model> SparklyWine_TBL { get; set; }
public DbSet<ShopItemProperty_Model> Whisky_TBL { get; set; }
public DbSet<ShopItemProperty_Model> WhiteWine_TBL { get; set; }
public DbSet<ShopItemProperty_Model> RedWine_TBL { get; set; }
public DbSet<ShopItemProperty_Model> Wodka_TBL { get; set; }