Jimmy Aumard

Results 106 issues of Jimmy Aumard

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; }...

- [ ] removeAll - [ ] removeMany - [ ] getAll (even if we can use preload function would be nice to have it here)

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...

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 {...

I'm trying to achieve this kind of scrolling: ![3s0yi](https://user-images.githubusercontent.com/2970449/51610662-953fa680-1f1d-11e9-9116-e4a483e576cc.jpg) ![kmh1q](https://user-images.githubusercontent.com/2970449/51610665-95d83d00-1f1d-11e9-86c1-f0823cbb9241.png) Is there any way to do that with this plugin ? Thanks !

I've update to serializer cli v2.2.8 and now Uint8list can't be generated correctly: ``` JaguarCliException: Cannot handle Uint8List in UserUpdateSerializer! [SEVERE] #0 AnnotationParser._expandTypeInfo (package:jaguar_serializer_cli/src/instantiater/instantiater.dart:441:5) #1 AnnotationParser.parse (package:jaguar_serializer_cli/src/instantiater/instantiater.dart:94:20) #2 JaguarSerializerGenerator.generateForAnnotatedElement (package:jaguar_serializer_cli/src/generator.dart:34:65)...

When deserialization is done and model contains list, they should be immutable (meaning use `growable:false`) to prevent miss usage add allow add/remove items into those list.

In java I used this feature to parse json like this: ``` [ { type: 'myClass',... }, { type: 'myClass2',... } ] ``` it allow the parser to know which...