vote up 2 vote down star
2

I need to use the SQRT function as part of a where clause in a Linq EF query. I figured I could do this:

var qry = context.MyTable.Where("sqrt(it.field) > 1");

But it returns an error saying "'sqrt' cannot be resolved into a valid type constructor or function., near function, method or type constructor, line 6, column 5."

I had always assumed that linq literally takes what's in the where clause and translates that into a statement that is executed directly in SQL. That doesn't seem to be the case...

Anyone know the work-around?

Thanks

flag

64% accept rate
I assume that the number you need to compare against won't always be one, right? Cause...if it is...just don't use sqrt. Sqrt(1) = 1 – PeterAllenWebb Oct 24 at 4:45
Retag. There is no C#3.5 (see stackoverflow.com/questions/247621/…) – Vaccano Nov 2 at 23:14

2 Answers

vote up 0 vote down

Hi! Check the msdn document.Entity sql doesn't support the sqrt function.

link|flag
vote up 1 vote down

I'm using Linq Entities and was able to do this:

        testEntities entities = new testEntities ();

        ObjectQuery<Fees> fees = entities.Fees;

        return from f in fees 
               let s = Math.Sqrt((double)f.FeeAmount)
               where s > 1.0 
               select f ;

When I check the generated SQL, I get

SELECT [t1].[TestTriggerID]
FROM (
    SELECT [t0].[TestTriggerID], SQRT(CONVERT(Float,[t0].[TestTriggerID])) AS [value]
    FROM [TestTrigger2] AS [t0]
    ) AS [t1]
WHERE [t1].[value] > @p0

This seems reasonable. I was unable to use the .Where string format to reproduce the same code, but I'm probably missing something obvious.

link|flag
I did try something similar, except I used Math.Sqrt in the select portion of without a let assignment. Do some items work as a let while they don't work natively in a where? – Chu Oct 27 at 14:54
LINQ queries actually operate in the sequence they are constructed. FROM defines the source, which the LET augments with a computed value. The WHERE clause now has the item it needs (via the sub-query constructed from the FROM+let) to filter and finally the SELECT feeds values on as the result. Putting the computation in the SELECT would be "too late" for the WHERE clause to act upon without explicitly using that result as a sub-query). – Godeke Oct 27 at 15:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.