Scalar-valued functions that use databases in EF

Source: Internet
Author: User
Tags scalar

Reference: https://msdn.microsoft.com/zh-cn/library/dd456847 (v=vs.110). aspx

Http://stackoverflow.com/questions/12481868/how-to-use-scalar-valued-function-with-linq-to-entity

1. First modify the <function> added in the edmx, change the IsComposable property to False, remove the ReturnType attribute, and then add a child node <CommandText>

<function name="todistance"Aggregate="false"builtin="false"niladicfunction="false"iscomposable="false"parametertypesemantics="allowimplicitconversion"Schema="dbo"> <CommandText>SELECT dbo. Todistance (@Lng1, @Lat1, @Lng2, @Lat2)</CommandText> <parameter name="Lng1"Type="float"Mode="inch"/> <parameter name="LAT1"Type="float"Mode="inch"/> <parameter name="Lng2"Type="float"Mode="inch"/> <parameter name="LAT2"Type="float"Mode="inch"/></function>

2, double hit open edmx file, select Model Browser, expand ****.store, stored procedure/function, select the desired function, right-click, import, in the pop-up box select scalar, select the parameter value, OK.

Scalar-valued functions that use databases in EF

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.