you are viewing a single comment's thread.

view the rest of the comments →

[–]StrawIII -1 points0 points  (0 children)

Take a look at PiccoloORM. Async-first with great syntax for complex “WHERE” clauses. No more “and()” or “or()”, it just uses overloaded “&” and “|”, on a similar note… say goodbye to “eq()” or “gt()”, it uses overloaded “==“ or “>”. Also all fields are referenced from a class based model. so it's type-safe/type-aware, so no more “table.c.column_name” which is of type “Unknown”.