vote up 0 vote down star

With a LINQ-TO-SQL linq query - does the SQL generated respect the 'Where conditions' order?

For instance:

int[] result = (from r in DB.Accounts 
                where r.AccountID > 10 && r.Name == "Harry").ToArray();

If there are thousands of rows, and there is an Index on the Name column, will the SQL query by the Indexed column first?

flag

50% accept rate

1 Answer

vote up 1 vote down

It doesn't matter - SQL Server will handle that.

link|flag

Your Answer

Get an OpenID
or

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