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

The construction of auto incrementing primary keys is confusing and does not expose allow for auto incrementing keys without reuse. https://www.sqlite.org/autoinc.html Currently if you specify a PrimaryKey with the auto...

enhancement

Any plans on supporting Flutter web? Or is it already supported and I am doing something wrong?

``` pub run build_runner build [INFO] Generating build script completed, took 615ms [INFO] Reading cached asset graph completed, took 98ms [INFO] Checking for updates since last build completed, took 820ms...

Can an option be added to Column to prevent an empty string. create table foo (bar TEXT, CHECK(bar '')

It is possible to have an object Field ? `class Morceau { @PrimaryKey(auto: true, isNullable: false) int codeMorceau; @Column(length: 30, isNullable: true) String titreMorceau; @BelongsTo.many(ArtisteBean, refCol: 'codeArtiste') Artiste artisteMorceau; }...

Hello ! i don't understand that error `main() async { final _adapter = PgAdapter('bibliotheque', username: 'postgres', password: 'password1234'); await _adapter.connect(); //create beans final albumBean = AlbumBean(_adapter); Album slipknot = new...

Looking at the generated code: ```dart Future insertMany(List models, {bool cascade: false, bool onlyNonNull: false, Set only}) async { if (cascade) { final List futures = []; for (var model...

Hello, My model as the primary key set auto ```dart class MyModel { @PrimaryKey(auto: true) int id; // .. other fields } ```` When I'm trying to insert many of...

Method: Future find(Find st) Error: A value of type 'StreamedResults' can't be assigned to a variable of type 'Results'. Fix?: Future find(Find st) async { String stStr = composeFind(st); sj.StreamedResults...

jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart Missing functions: these can be used a temp fix: @override Future alter(Alter statement) { throw UnimplementedError('TODO need to be implemented'); } @override Future insertMany(InsertMany statement) { throw UnimplementedError('TODO need...