So I was watching some of the PDC talks and noticed that some people write where clauses like this..
var result = from item in source
where item.Name == "John"
where item.Country == "UK"
select itemrather than like this
var result = from item in source
where item.Name == "John" && item.Country == "UK"
select itemAnd I was wondering why and if there is a difference in the final expression tree produced.
Cheers,
Stephen.
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.