Perfect-CRUD
Perfect-CRUD copied to clipboard
Needs more operations, such as `group by`
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>)