gpt4 book ai didi

c# - 使用 Entity Framework 6 调用数据库函数

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

我按照这些说明将标量函数添加到我的 Entity Framework 6 数据模型中。 How to use scalar-valued function with linq to entity?

但是,我无法在 LINQ 查询中调用该函数,尽管可以直接在 DataContext 上调用该方法。

using (Entities context = new Entities()) {
// This works.
var Test1 = context.fn_GetRatingValue(8, 9, 0).FirstOrDefault();
// This doesn't work.
var Test2 = (from r in context.MediaRatings
select context.fn_GetRatingValue(r.Height, r.Depth, 0)).ToList();
}

第二个查询抛出这个错误。

LINQ to Entities does not recognize the method 'System.Data.Entity.Core.Objects.ObjectResult`1[System.Nullable`1[System.Single]] fn_GetRatingValue(System.Nullable`1[System.Single], System.Nullable`1[System.Single], System.Nullable`1[System.Single])' method, and this method cannot be translated into a store expression.

另外,设计师给我这个警告

Error 6046: Unable to generate function import return type of the store function 'fn_GetRatingValue'. The store function will be ignored and the function import will not be generated.

我做错了什么?如何在 LINQ 查询中调用数据库函数?

此外,如果查询代码有时针对数据库执行,有时在内存中执行,有没有办法以在这两种情况下都有效的方式调用函数?我有相同功能的 C# 版本。

谢谢

编辑:这是我正在尝试使用的功能。

public float? GetValue(float? Height, float? Depth, float ratio) {
if (Height != null || Depth != null) {
float HeightCalc = Height ?? Depth.Value;
float DepthCalc = Depth ?? Height.Value;
if (ratio < 0)
DepthCalc = DepthCalc + (HeightCalc - DepthCalc) * -ratio;
else if (ratio > 0)
HeightCalc = HeightCalc + (DepthCalc - HeightCalc) * ratio;
return (float)Math.Round(HeightCalc * DepthCalc * .12, 1);
} else
return null;
}

也可以这样写成一行。这行可以复制/粘贴到我需要使用它的任何地方,但这会产生非常丑陋的代码,尽管它可以工作。我宁愿将它保留为一个函数。

return (float)Math.Round(
(Height.HasValue ? Height.Value + (ratio > 0 ? ((Depth ?? Height.Value) - Height.Value) * ratio : 0) : Depth.Value) *
(Depth.HasValue ? Depth.Value + (ratio < 0 ? ((Height ?? Depth.Value) - Depth.Value) * -ratio : 0) : Height.Value)
* .12, 1);

最佳答案

我找到了答案。虽然我能找到很少的关于 Entity Framework 6 的文档,其中 EdmFunctionAttribute 已过时,但我让这段代码起作用。

在 EDMX 文件中,IsComposable 必须为 True,并且必须删除 CommandText。我只需要函数声明而不需要函数导入。

然后,在我的数据上下文的部分类中,我创建了这个函数

[DbFunction("NaturalGroundingVideosModel.Store", "fn_GetRatingValue")]
public float? DbGetValue(float? height, float? depth, float ratio) {
List<ObjectParameter> parameters = new List<ObjectParameter>(3);
parameters.Add(new ObjectParameter("height", height));
parameters.Add(new ObjectParameter("depth", depth));
parameters.Add(new ObjectParameter("ratio", ratio));
var lObjectContext = ((IObjectContextAdapter)this).ObjectContext;
var output = lObjectContext.
CreateQuery<float?>("NaturalGroundingVideosModel.Store.fn_GetRatingValue(@height, @depth, @ratio)", parameters.ToArray())
.Execute(MergeOption.NoTracking)
.FirstOrDefault();
return output;
}

我将该函数添加到 MediaRating 对象,这样我就可以在不需要引用数据上下文的情况下调用它。

var Test2 = (from r in context.MediaRatings
select r.DbGetValue(r.Height, r.Depth, 0)).ToList();

这行得通!

关于c# - 使用 Entity Framework 6 调用数据库函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27008369/

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