我看过这个标题的其他问题,但他们都说要删除表格。我不想删除它,它有重要数据。
相反,我不能让 MVC 首先停止尝试重新创建它吗?我只想读取它的数据并输出它。我只是想像这样输出它:
return View(db.Accounts.ToList());
这是我的模型:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
namespace MvcApplication1.Models
{
public class Account
{
public int ID { get; set; }
}
public class MyDbContext : DbContext
{
public DbSet<Account> Accounts { get; set; }
}
}
如何阻止 MVC 尝试重新创建我的表?