在LINQ to Entities查询中调用自定义标量数据库函数?

问题描述 投票:7回答:2

有没有办法可以将自定义标量数据库函数称为LINQ to Entities查询的一部分?我在网上唯一能找到的就是这个页面:

https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/ef/language-reference/how-to-call-custom-database-functions

但是,这里给出的说明似乎假设您正在使用DB-first方法并讨论修改.edmx文件。如果您使用代码优先方法呢?我希望能够写出这样的东西:

var result = await (
    from itm in _itemDataContext.Items
    where
        itm.QryGroup1 == "Y" &&
        _itemDataContext.Dbo_MyCustomScalarIntFn(itm.QryGroup2) > 0
).ToArrayAsync();
c# sql-server entity-framework linq ef-code-first
2个回答
3
投票

原来这个功能没有内置在Entity Framework中,所以我不得不使用NuGet包(CodeFirstFunctions)来获取它:


IItemDataContext

[DbFunction("CodeFirstDatabaseSchema", "fn_IsCorrectProduct")]
bool Fn_IsCorrectProduct(string companyID, string itemCode);

Item DataContext

[DbFunction("CodeFirstDatabaseSchema", "fn_IsCorrectProduct")]
public bool Fn_IsCorrectProduct(string companyID, string itemCode)
{
    // UDF is described in DbFunction attribute; no need to provide an implementation...
    throw new NotSupportedException();
}

1
投票

我认为你可以使用ExecuteSqlCommand,但你必须硬编码要对BD执行的sql,如下所示:

var result = await (
    from itm in _itemDataContext.Items
    where
        itm.QryGroup1 == "Y" &&
        _itemDataContext.Database.ExecuteSqlCommand("Exec yourFunction "+itm.QryGroup2) > 0
).ToArrayAsync();

我没有测试过,但应该解决你的问题。

© www.soinside.com 2019 - 2024. All rights reserved.