Moshe Dicker

Results 208 comments of Moshe Dicker

The dart team has enough work on their plate maintaining a computer language. I think we all rather more time be spent on the actual language, adding great features, fixing...

I haven't looked at this PR in a while. I'll try to look at it again today.

We could wait for them to fix, but I would rather rename it

I'm putting this on the back burner. I would like to bring the manager API up to feature parity with similar ORM libraries first.

The code generator for this will be an abysmal mess until the api design for this is ironed out

After some investigation, it turns you there is no way to read multiple column of a reverse reference in a single query I'm going to go with this [implementation ](https://docs.djangoproject.com/en/5.0/ref/models/querysets/#django.db.models.query.QuerySet.prefetch_related)...

@simolus3 I've been able to implement a way to get items with their references. ```dart final products = await db.managers.product .withReferences() .withDepartment() .withListings() .get(); for (var productWithRefs in products) {...

I've spent a considerable amount of time on this, but I'll have to agree, in practice this is handing a loaded gun to a child. Reverse references should be returned...

I'm still thinking about how to proceed on this...