gpt4 book ai didi

c# - 在容器 'GetEmployee' 中找不到 FunctionImport 'CtxDb'

转载 作者:太空狗 更新时间:2023-10-29 23:43:25 25 4
gpt4 key购买 nike

我正在尝试使用 Linq 调用一个存储过程。为此,我写了这段代码:

 public class CtxDb:DbContext
{
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);

}
public virtual ObjectResult<Employee> GetEmployee()
{
return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction<Employee>("GetEmployee");
}
}

当我从 Web API 调用我的 sp 时,出现错误:

The FunctionImport 'GetEmployee' could not be found in the container 'CtxDb'

最佳答案

像这样使用容器名称限定函数导入:

public virtual ObjectResult<Employee> GetEmployee()
{
return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction<Employee>("EntityContainerName.GetEmployee");
}

实体容器名称可在您的 EDMX 上找到 - 右键单击​​任意位置并执行“属性”。

source

替代方法:

public virtual ObjectResult<Employee> GetEmployee() {
return this.Database.SqlQuery<Employee>("GetEmployee");
}

关于c# - 在容器 'GetEmployee' 中找不到 FunctionImport 'CtxDb',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46262056/

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