[IronPython] LINQ from IronPython

Jeff Hardy jdhardy at gmail.com
Tue Dec 22 20:51:22 CET 2009


On Tue, Dec 22, 2009 at 10:11 AM, Dody Gunawinata
<empirebuilder at gmail.com> wrote:
> I am not well averse with generator expression, but I think it will have
> problem supporting the 9 keywords in LINQ Query Comprehension Syntax so
> sticking to extension methods would make more sense.

I wouldn't expect support for the whole whack of operators - just the
ones that make sense using the syntax for generator expressions. Most
of the queries I do are just filtering a set, which genexps are
perfectly suited for, and it would be nice if using a genexp on an
entity framework set could be executed in the database instead of on
the client.

All that said, it would just be syntax sugar over the extension
methods in the same way that C#'s query expressions are.

- Jeff



More information about the Ironpython-users mailing list