Swift-Kuery-ORM icon indicating copy to clipboard operation
Swift-Kuery-ORM copied to clipboard

An ORM for Swift, built on Codable

Results 25 Swift-Kuery-ORM issues
Sort by recently updated
recently updated
newest added

A way of specifying the data types used in the database for the model.

enhancement

In a situation where an application shares a common database with other applications, it may be necessary to refresh the values of a `Model` with their current values in the...

enhancement

With reference to #35, I am trying to build a series of queries to do my own validation before saving/updating my models. The docs suggest to retrieve the table like...

question

Allow users to inherit from a `Base` class, Active Record style, or a `MappedSuperclass`, JPA style, among other inheritance strategies.

enhancement

SQL Statement --- SELECT a, b FROM t1 WHERE (a `LIKE` '%b' OR a = 'apple') AND b > 5 ORDER BY b ASC, a DESC OFFSET 5; thanks

question