Selects entities from the database using the optional given clauses. The name of the fields should correspond to the name of the entity's fields in the database, not to the ones in the D program.
database.select!(["a", "b"], Test)(); database.select!("testId", Test)(); database.select!Test(Database.Select(Database.Select.Limit(10)));
See Implementation
Selects entities from the database using the optional given clauses. The name of the fields should correspond to the name of the entity's fields in the database, not to the ones in the D program.