3

我有标量函数:

CREATE FUNCTION [dbo].[CheckLocation]
(
    @locationId Int
)
RETURNS bit
AS
BEGIN
    //code
END

我想在实体框架上下文中使用它。

我在 *.edmx 文件中添加了这个:

<Function Name="CheckLocation" ReturnType="bit" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="true" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo" >
<Parameter Name="locationId" Type="int" Mode="In" />
</Function>

我还创建了一个带有 EdmFunctionAttribute 装饰的方法的部分类:

public partial class MainModelContainer
{
    [EdmFunction("MainModel.Store", "CheckLocation")]
    public bool CheckLocation(int locationId)
    {
        throw new NotSupportedException("Direct calls not supported");
    }
}

我尝试像这样使用这个功能:

Context.CheckLocation(locationId);

并得到 NotSupportedException(“不支持直接调用”)。它适用于 Select 方法,但它不适合我。请帮忙!如何在没有选择方法的情况下调用此函数?

4

1 回答 1

2

您需要作为选择访问它

var students = context.Locations
    .Select ( new  {  location= CheckLocation(locationId)}):
于 2012-09-12T17:16:27.033 回答