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

File: jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart Error: A value of type 'StreamedResults' can't be assigned to a variable of type 'Results'. Fix: Need to destream before setting to results Find all occurances in adapter...

File: jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart inconsistent method name? Future delete() async { should it be changed to remove() to match the underlying functions?

My entities share common columns: ``` abstract class WithUpdate { @Column(isNullable: true) DateTime updatedAt; } ``` When inheriting from the above class: ``` class SomeEntity extends WithUpdate { @PrimaryKey() int...

With the migration to sqflite to v4, it's now no more possible to use sqflite capabilities like migration stuff (but more than migration, the lifecycle of the database is now...

bug

"AddStr" in create vs "AddString" in alter "AddDateTime" in create vs "AddDatetime" in alter

Column names can, in theory, be the same as sqlite keywords, so long as they are always surrounded in double-quotes in the generated sql. `SqlBuilder` from `package:sqflite/src/sql_builder.dart` already does this,...

I intended to create a PR for `DateTime`/`Duration` support, but I fail to get a dev setup where I can run the current tests. Running the tests in ORM gives...

I have a model with a many-to-many relationship: ```dart class Session { @ManyToMany(StudentSessionBean, StudentBean) List students; } ``` When I call `session.id = await sessionBean.upsert(session, cascade: true)` on a new...

got this error: my pubspec: ``` dependencies: # ... dotenv: ^2.0.0 mysql1: ^0.17.0+1 jaguar_query_sqljocky: ^2.2.4 jaguar_orm: ^2.2.7 dev_dependencies: build_runner: ^1.5.0 jaguar_orm_gen: ^2.2.29 ``` ``` jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart:12:7: Error: The non-abstract class 'MysqlAdapter'...