jaguar_orm icon indicating copy to clipboard operation
jaguar_orm copied to clipboard

Source-generated ORM with relations (one-to-one, one-to-many, many-to-many), preloading, cascading, polymorphic relations, etc

Results 60 jaguar_orm issues
Sort by recently updated
recently updated
newest added

I tried using ``` @Column(isNullable: false, uniqueGroup: "nls_unique_idx") int family; @Column(isNullable: false, uniqueGroup: "nls_unique_idx") int profile; ``` But this did not seem to accomplish what I thought it was.

Method to get many rows by list of primary keys

The flutter_sqlcipher plugin bundles and wraps SQLCipher, an open-source extension to SQLite that provides transparent 256-bit AES encryption of database files. - https://github.com/drydart/flutter_sqlcipher - https://pub.dartlang.org/packages/flutter_sqlcipher - https://pub.dartlang.org/documentation/flutter_sqlcipher/latest/ Would a pull...

Both Android and iOS have native support for the FTS4 virtual table module extensions. Currently there is no way in jaguar to enable these. > _Documentation on the feature is...

Would be nice to have a count method generated to be able to count number of items from a where query a get a integer. Because for now all we...

I have `Order` connected by HasMany relation with `OrderItem`, the insert method looks pretty good, but about update, I think its missing to create item if not exists Imagine I...

It would be helpful to support an `onlyNotNull` flag on `toSetColumns` operations (supported in insert, update, or upsert operations) so that we can update a partial model. In my case,...

Would be nice to be able to serialize some field as string (or JSON type if supported by the DB). It will allow doing stuff like: ``` class Data {...

+ [ ] Getting started + [ ] Where Expression + [ ] What is a Bean? + [ ] Generating a Bean + [ ] Relations + [ ]...

enhancement
help wanted

+ [x] int, String, double, bool, DateTime fields + [x] Autoincrement + [ ] Unique columns + [ ] Compound primary keys + [ ] Foreign keys + [ ]...