Returns the requested structure, searches by the given column name with the given value If not rows are returned, a Nullable null value is returned
Connection conn; // An established connection struct User { @serial @PKey int id; ... }; auto user = conn.findOneBy!User("id", 1); // will search by "id"
See Implementation
Returns the requested structure, searches by the given column name with the given value If not rows are returned, a Nullable null value is returned