On Tue, Dec 22, 2009 at 10:11 AM, Dody Gunawinata <[email protected]> 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 _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
