Perfect-CRUD icon indicating copy to clipboard operation
Perfect-CRUD copied to clipboard

Needs more operations, such as `group by`

Open kjessup opened this issue 8 years ago • 0 comments

GROUP BY or HAVING

How would these look?

LINQ is something like this:

from p in persons group p.car by p.PersonId into g select new { PersonId = g.Key, Cars = g.ToList() }

The grouping becomes a new object, basically a tuple: (key: KeyType, items: Iterator<Form>)

kjessup avatar Dec 13 '17 20:12 kjessup