我遇到问题,程序启动但崩溃时出现异常: 消息=无效的对象名称'dbo.Entity1Set'。 会发生什么?
class Program
{
static void Main(string[] args)
{
Model1Container db = new Model1Container();
db.Database.CreateIfNotExists();
Personne ps = new Personne();
ps.Nom = "Loup";
ps.Prénom = "Julien";
db.PersonneSet.Add(ps);
db.GetValidationErrors();
db.SaveChanges(); //Exception ???
Console.ReadKey();
}
}
我不知道在我的代码中添加“CreateDatabaseIfNotExists”的方式和位置......