在LINQ查询中调用SQL用户定义的函数

时间:2013-11-21 20:53:12

标签: c# sql linq entity-framework linq-to-entities

我很难让这个工作。我正在尝试使用IQueryable上的以下Filter助手进行半径搜索。在应用RadiusSearch之前,还有一组其他过滤器已应用。顺序应该不重要,因为目标是将查询推迟到ToList()操作。

public static IQueryable<ApiSearchCommunity> RadiusSearch(this IQueryable<ApiSearchCommunity> communities)
{
    var centerLatitude = 30.421278;
    var centerLongitude = -97.426261;
    var radius = 25;

    return communities.Select(c => new ApiSearchCommunity()
    {
        CommunityId = c.CommunityId,
        City = c.City,
        //Distance = c.GetArcDistance(centerLatitude, centerLongitude, c.Latitude, c.Longitude, radius)
    });
}

我可以以某种方式编写一个像GetArcDistance这样的辅助工具,然后在SQL上调用UDF吗?我想要生成的查询是以下

SELECT 
    comms.community_id, 
    comms.city, 
    comms.distance 
FROM (
    SELECT 
        c.community_id, 
        c.city, 
        dbo.udf_ArcDistance(
            30.421278,-97.426261, 
            c.community_latitude,
            c.community_longitude
        ) AS distance 
    FROM communities c) AS comms 
WHERE comms.distance <= 25 
ORDER BY comms.distance

2 个答案:

答案 0 :(得分:22)

好吧,我想我理解了这个问题 - 它的要点是你希望能够将SQL UDF作为Linq to Entities查询的一部分来调用。

如果您首先使用数据库或模型:

本文介绍了如何执行此操作:http://msdn.microsoft.com/en-us/library/dd456847(VS.100).aspx

总结一下,首先需要在xml编辑器中编辑edmx文件,在edmx:StorageModels&gt;&gt;中编辑。你需要指定一个映射到你的sql udf的模式部分,例如

<Function Name="SampleFunction" ReturnType="int" Schema="dbo">
    <Parameter Name="Param" Mode="In" Type="int" />
</Function>

然后你需要在其上创建一个带有EdmFunction属性的静态函数,如下所示:

public static class ModelDefinedFunctions
{
    [EdmFunction("TestDBModel.Store", "SampleFunction")]
    public static int SampleFunction(int param)
    {
      throw new NotSupportedException("Direct calls are not supported.");
    }
}

此方法将在实体框架的查询时映射到UDF。第一个属性参数是商店命名空间 - 您可以在Schema元素的edmx xml文件中找到它(查找Namespace)。第二个参数是udf的名称。

然后你可以这样称呼它:

var result = from s in context.UDFTests
            select new
            {
                TestVal = ModelDefinedFunctions.SampleFunction(22)
            };

希望这有帮助。

答案 1 :(得分:15)

如果您使用Code-First方法,则无法根据需要调用UDF(从EF6开始) - 这里是proofanother one。您仅限于将UDF称为part of your SQL query

bool result = FooContext.CreateQuery<bool>(
    "SELECT VALUE FooModel.Store.UserDefinedFunction(@someParameter) FROM {1}",
    new ObjectParameter("someParameter", someParameter)
).First();

这是丑陋的IMO并且容易出错。

此外,此MSDN页面显示:

  

调用自定义函数的过程需要三个基本步骤:

     
      
  1. 概念模型中定义函数或在存储模型中声明函数
  2.   

这实际上意味着您需要使用Model-First方法来调用UDF。