.NET LINQ query syntax vs method chain

No, because they are compiled into exactly the same code.

Basically query expressions are “pre-processed” by the compiler into “C# 3 without query expressions” and then the rules of overloading, lambda expression translation etc are applied as normal. It’s a really elegant system which means that the rules for query expressions are limited to just one small bit of the spec.

Of course, there are various things you can write in “chained method” syntax which can’t be written in query expression syntax, either due to using other overloads or the methods simply not being supported (e.g. Count()) – but unless you’re using those, the compiled code will be exactly the same. Pick the most readable alternative for any particular scenario.

Leave a Comment