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

With the v4, I've see some naming that are not obvious or shortened for no reason. We need to be careful about naming and code clarity. When I see class...

With the migration to sqflite to v4, it's now no more possible to override the adapter to change the underlying database connection (to do a feature like switch database during...

bug

Problem is that if you have a huge load of data, for example a synchronization for offline usage to do with your backend, doing the work on the main isolate...

Hello, I wanted to use iss in a where clause to check for NULL values but it was not recognized. I'm using jaguar_query-2.2.8 and i can't find it in \jaguar_query-2.2.8\lib\src\operators\operators.dart...

When creating the model it would be great to have nullable columns handled with the Optional so nullability becomes explicit and null checks can be removed from the code. ```...

Hi there, I use built_value in my project, like the most of production projects do. Today I decided to add a dependency to "jaguar_orm" and try to use it but...

With SQFlite I notice that create table generate this: ``` CREATE TABLE IF NOT EXISTS cart (id INT, ext_id INT NOT NULL, amount REAL NOT NULL, modified INT NOT NULL,...

bug

I always find it weird that for one-to-many we set `List` in one side and only `int id` on the other side, As v4 is going on I propose to...

If model are immutable, all generated code about relations doesn't compile anymore. Mostly because if generate stuff like this: ``` void associateCart(CartItem child, Cart parent) { child.cartId = parent.id; }...