|
|
|
|
|
by zmj
2216 days ago
|
|
> That it comes with a SQL builder is just a necessity in order for the mapping to be done by the ORM. That's only true if you need the "relational" part of an ORM - mapping a flat list of values onto a structure of related objects. If you only need to map a flat list of values onto a single object's fields, you don't need a query builder. I wrote a C# SQLite library along those lines: raw SQL and simple object mapping. https://github.com/zmj/sqlite-fast |
|