Deletes rows in the specified relation, filtered by the given filter string and values
Connection c; // An established connection struct User { @PK @serial int id; int posts } c.remove!User("id > $1 AND posts == $2", 50, 0);
See Implementation
Deletes rows in the specified relation, filtered by the given filter string and values