Files
TinyORM/docs/tinyorm
silverqx acfaead435 added ModelsCollection::sort/sortBy
- also added stableSort() and stableSortBy()
 - added the descending variants for all above methods
 - added Model three way comparison operator for comparing/sorting
   models by the primary key
 - added unit tests
 - updated docs
2023-05-30 11:48:21 +02:00
..
2022-05-18 15:43:20 +02:00
2023-05-27 17:49:26 +02:00
2023-05-27 17:49:26 +02:00

TinyORM

TinyORM is an object-relational mapper (ORM) that makes it enjoyable to interact with your database. When using TinyORM, each database table has a corresponding "Model" that is used to interact with that table. In addition to retrieving records from the database table, TinyORM models allow you to insert, update, and delete records from the table as well.