gpt4 book ai didi

c# - 单独项目中的 EF5 模型看不到 DbContext 方法

转载 作者:太空狗 更新时间:2023-10-30 00:11:15 25 4
gpt4 key购买 nike

我是 EF 的新手,我刚开始使用 EF5。

遵循 Performance Considerations for Entity Framework 5 的建议, 2.4.2 将模型移动到单独的程序集...我创建了一个单独的项目(我将其称为 EfPrj)来管理我的 Db 上下文(称为 MyDbContext)。

在我的域层(我将其称为 DomainPrj)中,我使用来自 EfPrj 的实体。问题是在 DomainPrj 中我看不到从 DbContext 继承的 MyDbContext 的成员。

例如,如果我想更新一个表 Users,代码是:

void UpdateUser(User u)
{
MyDbContext db = new MyDbContext();
//whatever is needed
db.SaveChanges();
}

但在 EfPrj 中它可以正常工作。在 DomainPrj 中我看不到成员函数 SaveChanges(),得到这个错误:

'MyDbContext' does not contain a definition for 'SaveChanges' and no extension method 'SaveChanges' ... could be found (are you missing a using directive or an assembly reference?)

更新:EfPrj 仅是一个具有 ORM 数据库优先模型的项目。默认情况下,MyDbContext 的定义类似于 EF5 对象: 公共(public)部分类 MyDbContext : DbContext { 公共(public) MyDbContext() : base("名称=MyDbEntities") {

So 派生自 DbContext 并且是公开的。DomainPrj 引用 EfPrj 和 MyDbContext db = new MyDbContext() 可以正常工作。

最佳答案

您是否尝试过从您的 DomainPrj 引用 EntityFramework?

由于这些方法是在 DbContext 中定义的,而 DbContext 是在 EntityFramework 中定义的,因此您必须引用它。

一般来说,如果您不仅要使用类,还要使用在程序集中定义的委托(delegate)、方法、属性等;您必须引用该程序集。

关于c# - 单独项目中的 EF5 模型看不到 DbContext 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14321648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com