Moshe Dicker
Moshe Dicker
Let me walk the logic: **Requirements** Getting references should be supported without any additional code being written. Reading any other information out of the query (Aggregates) are out of scope...
@simolus3 What do you think of following? Let's have all references be accessible by `FutureOr`. Using `groups.withReferences(users: true)` will prefetch the users and place it in a cache. ```dart final...
The following is a happy medium between readability and code length. When requesting references, we return a Manager that already has the filters applied to it. In practice the code...
@simolus3 So, what should we do about this? ```console test/generated/todos.g.dart:3763:48: Error: The argument type 'int' can't be assigned to the parameter type 'RowId'. .filter((f) => f.id(todosTable.category!)); ``` This is stemming...
Nah, wait till I've got it all done. I'll ping you. Just wanted your thoughts on the design before I finished the PR. Sidepoint, I started a new project today...
I plan on contributing to Static Shock (it's written in dart). I can add whatever is needed there. I'll bring this up again once they add source code snippet injection.
> So if you have ideas on how the docs should look/feel like and be structured, I'd love to hear them because I'm not really good at managing the docs...
Not to pat myself on the back, but I'm using this new API on a production project and It's really nice. Thank you for being so kind and open to...
I took some time off working on this PR to do other things. I took a look at it again after a week I'm glad I did. The code was...
@simolus3 Handling different type converters is making the code really messy. Also, IMHO, I think it's bad practice to use different types for fields that reference each other. I'm ok...