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