Selects all the given relation's properties
struct User { @PK @serial int id; } auto qb = QueryBuilder() .select!User .from!User .where( ... );
See Implementation
Selects all the given relation's properties