vote up 5 vote down star

I am having some problems with linq to entities in the ado.net entity framework. Basically what I'm doing is this:

var results = (from c in companies
	where c.Name.StartsWith(letter)
	select c);

and this gets translated to SQL as something like:

WHERE (CAST(CHARINDEX(@p, [Extent1].[Name]) AS int)) = 1

which is fine but my table has millions of records so this runs VERY slow. What I need it to generate is something like:

WHERE Name LIKE @p + '%'

I'm searched high and low and cannot find any solutions except to either use a stored procedure or use entity sql...

Is there any way to do this through linq? Possibly by somehow extending the linq to entities linq provider, or somehow intercepting the command tree or generated query?

Please help!

flag
It's this kind of thing which makes me very relunctant to throw away my stored procedure layer in favour of anything which generates SQL. – AdamRalph Feb 23 at 11:07

5 Answers

vote up 2 vote down

Wow, that is a truly bizarre way of doing it! Note that LINQ-to-SQL (in this case) uses LIKE @p0 + '%'... very odd.

Which EF provider (database) are you using? SQL Server?

As you say, a stored procedure will the the job, but you shouldn't have to do that... very, very odd...

link|flag
Yes I'm using SQL Server 2005. From what I've read, LINQ to SQL provides a SqlMethods class that exposes SQL functions and operators such as LIKE but there's no such thing in LINQ to Entities. Go figure... – anonymous Feb 23 at 15:18
vote up 2 vote down

I am not a SQL expert but guessing that both syntaxes:

WHERE (CAST(CHARINDEX(@p, [Extent1].[Name]) AS int)) = 1

and

WHERE Name LIKE @p + '%'

will result in either a table scan or ideally an index scan. Bottom line they will perform the same. I verified this by viewing the execution plans below. Bottom line, you need to rethink your database schema or how your are performing your search. This is not a LINQ issue.

One possible area for improvement: insure that you have indexed the column that you are searching on.

alt text

alt text

link|flag
1  
Provided you have an index on the Note/Name column and cardinality's not too low, it will be used on a LIKE 'a%' query. I'm not sure the query optimizer will be able to use the index for a CAST(CHARINDEX()) operation. – Mark S. Rasmussen Feb 24 at 15:06
1  
I have an index on the Name column of my database. The LIKE does an index scan, the generated SQL (CHARINDEX) does a table scan which is why it takes so long. – anonymous Feb 25 at 4:41
vote up 1 vote down

This is a known issue with Linq to Entities. Unlike LIKE, apparently this construct doesn't use indexes.

We've had some success using Substring (which translates to SUBSTRING). The execution plan is similar, but in our case the query executes far quicker.

It's another "I'm sure it will be fixed in EF 2"... :-(

link|flag
vote up 0 vote down

Is "letter" a char? If you made it a string, what happens?

var results = (from c in companies
    where c.Name.StartsWith(letter.ToString())
    select c);
link|flag
It is a string... – anonymous Feb 25 at 4:40
vote up 0 vote down

I tried using this syntax instead

Name.Substring(0, 1) == "E"

This SQL is generated

WHERE N'E' = (SUBSTRING([Name], 0 + 1, 1))

Maybe this is more efficient?

link|flag
Yes I've tried that too... I think it ran about the same. – anonymous Feb 26 at 5:36

Your Answer

Get an OpenID
or

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