vote up 1 vote down star

Is there a way to add custom linq keywords and tell the compiler how to translate them to actual extension methods?

For example, translate the single keyword:

var color = from c in colors
            where c.IsFavorite
            select single c

To

var color = colors.Where( c => c.IsFavorite ).SingleOrDefault();
flag

71% accept rate

1 Answer

vote up 2 vote down check

No there is not a way to do this.

As to why, I worked on the VB.Net LINQ implementation vs. C# but the issues are mostly the same.

Adding LINQ to the language was a huge undertaking. As Eric Lippert has blogged about recently, LINQ barely fit into the VS2008 schedule and as such, essentially only the features that were absolutely essentially to shipping LINQ were added to the language.

Making LINQ arbitrarily extensible to users was not one of those features. It's also something that would have been very costly. Right now LINQ is a very complex feature which has a fixed set of constructs. Allowing it to be arbitrarily extensible would have severely inflated these costs (especially on the IDE side) in at least the following areas

  • Language Design (huge)
  • Intellisense
  • Pretty Printing / Formatting
  • Low level code emit details
  • etc ...
link|flag
:) Short and simple answer I guess. Any more specific info on why not? Is cause the compiler is closed source, a specific limitation in the C# standards etc? – Paul Alexander Oct 7 at 21:25
@Paul, added a brief explanation as to why. – JaredPar Oct 7 at 21:38
Thanks for the great feedback! – Paul Alexander Oct 7 at 23:09

Your Answer

Get an OpenID
or

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