Adds "enumerable extraction" support to query expressions
7 people like thisPosted: 12 years ago by kvb
Querying a players table grouped by first, then by the last name and counting the number of occurrence
14 people like thisPosted: 10 years ago by -H-M-
The example shows how to extend F# 3.0 'query' builder with a new custom operation that will work with standard lists, but also with queries that are translated using LINQ expressiont trees (such as databases).
12 people like thisPosted: 11 years ago by Tomas Petricek
Converting F# LINQ queries to SQL: - Basic example of simple group-by - Also if you want to have multiple aggregates (SUM, COUNT, MAX, MIN, AVG, ...) in the same SQL-clause, that is done with groupBy over a constant value.
2 people like thisPosted: 5 years ago by Tuomas Hietanen