C#异常,无法添加到ADO.Net数据库

时间:2016-01-18 23:23:33

标签: c# entity-framework ado.net

我遇到问题,程序启动但崩溃时出现异常:  消息=无效的对象名称'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”的方式和位置......

0 个答案:

没有答案