We’ve been working with DbLinq for a while now, at HexaSystems and recently using it together with Dynamic Linq and SQLite I programed a call to the Count method of a Queryable object as follows: 1public static int Count(this IQueryable source) 2{ 3 if (source == null) throw new ArgumentNullException("source"); 4 5...