Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any difference between these two ways of querying the context?

Firm firm = base.context.Firms
            .Where(f => f.SomeId == someId)
            .Where(f => f.AnotherId == anotherId)
            .FirstOrDefault();

Firm firm = base.context.Firms
            .Where(f => f.SomeId == someId && f.AnotherId == anotherId)
            .FirstOrDefault();

It seems that chaining is perfectly fine to accomplish the AND condition. I don't believe you can chain OR statements. Is there a reason to prefer one over another, or scenarios when one is better/more efficient?

share|improve this question

3 Answers

up vote 17 down vote accepted

They should both produce the same end result (if I'm not mistaken) but I find the the second is more readable and better shows the original intent.


Update

I just verified the above statement using LINQPad. Both queries will, in fact, product the same SQL.

For example:

context.SomeTable.Where(c => c.ParentId == null)
                 .Where(c => c.Name.Contains("F"))
                 .Select(c => c.Name);

Produces:

SELECT [t0].[Name] 
FROM [SomeTable] AS [t0]
WHERE ([t0].[Name] LIKE @p0) AND ([t0].[ParentId] IS NULL)

Which is the same SQL that is produced by:

context.SomeTable.Where(c => c.ParentId == null && c.Name.Contains("F"))
                 .Select(c => c.Name);



You could also compact things a little more (which I find preferable for the same reasons as above):

var firm = base.context.Firms.FirstOrDefault(f => f.SomeId == someId 
                                                  && f.AnotherId == anotherId);
share|improve this answer
1  
+1 for readability – TGnat Nov 4 '10 at 16:05
+1 for LinqPad. – Omar Nov 4 '10 at 16:41
1  
The first one is most readable to me. You can immediately see there are two separate conditions which must match and they line up perfectly. Sure the second one also has two conditions but it takes the extra second to parse out that there is a && in the line. – Ryan Nov 4 '10 at 16:51
+1 for LINQPad. LINQPad: linqpad.net. It's a wonderful little tool for LINQ. – Thorin Nov 4 '10 at 17:03
I have a question regarding your last syntax (FirstOrDefault(Predicate...)), given that ObjectQuery implements both IEnumerable and IQueryable, what is the compiler overload resolution algorithm for choosing IQueryable.FirstOrDefault() over IEnumerable.FirstOrDefault() so that you see the predicate shows up in the generated SQL on Profiler or LINQPad? For more please take a look at my answer to this question: stackoverflow.com/questions/4047266/… Thanks. – Morteza Manavi Nov 4 '10 at 17:13

My guess is that as long as you are working with in IQueryable (as your context collections probably are), using the chained extensions vs the full predicate clause achieves the same thing. This is because IQueryable allows for deferred execution so essentially the same SQL is being generated behind the scenes.

share|improve this answer

You can debug through the code and see the SQL that gets generated as a result of each. I would imagine it turns into the same query.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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