Might be useful to support the ability to do the following: ``` CSharp var query = SqlQuery.From<Table>() .Select(x=> x.Col1, x => x.Col1.Count()) .GroupBy(x => x.Col1) ``` This would be useful for showing aggregate counts of data in an application.