我正在尝试用 C# 制作一个 Web 应用程序 MVC4。
我使用的数据库与最初为用户创建的数据库(认证)相同(更容易处理连接字符串)。
所以我做了3个模型,模型在数据库中找到。现在我添加了另一个实体作为模型,但模型不是在 mdf 文件中创建的。
如何从代码创建它或重建数据库,或者......
目前,除了处理我的最新实体(名为“ItemsToBuy”)的控制器之外,一切正常,因为它确实不存在于数据库中
谢谢帮助我!
编辑:代码
namespace MvcShop.Models
{
public class ItemsToBuy
{
public int ItemsToBuyId {get; set;}
public Item Item { get; set; }
public int NumberItems { get; set; }
public string AddedBy { get; set; }
public DateTime AddedDate { get; set; }
public int ItemId { get; set; }
}
}
以及产生异常的方法:
var itemstobuys = db.ItemsToBuy.Include(i => i.Item);
return View(itemstobuy.ToList());
有了那个异常(InnerException):
{“无效的对象名称'dbo.ItemsToBuys'。”}
和 DBCONtext 类:
namespace MvcShop.Models
{
public class ShopEntities : DbContext
{
public DbSet<Item> Item { get; set; }
public DbSet<ItemShop> ItemShop { get; set; }
public DbSet<ItemsToBuy> ItemsToBuy { get; set; }
public DbSet<Shop> Shop { get; set; }
}
}
并根据需要在 global.asax 中:
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
Database.SetInitializer<ShopEntities>(null);
}
}