Results 1 comments of Wim Pool

This is the way I do counts in my application: ``` var countQuery = QueryFactory.Query(); countQuery.SelectRaw("count(1) as Count").From(query, "csq0"); foreach (var with in withs) { countQuery = countQuery.WithRaw(with.Alias, with.Query); }...