David Fahlander
David Fahlander
Thanks! I just deleted my fork.
Thanks for a valid question. I won't probably prioritize to update dexie-relationships addon in the near future and I haven't seen so much need of it from the community lately....
I agree fully. Problem right now is that Dexie needs to change it's core loop to handle this. I've started a rewrite in typescript at https://github.com/dfahlander/Dexie.js/tree/next-expression-engine/src/dexie-next. This new branch is...
Thanks! I'll ping you as I move forward. Just the knowledge of that there are people wanting to help further on is good. Relationships addon is already part of the...
There's currently no syntactic support for it in this addon. Been thinking about syntaxes as the following: ```js db.version(1).stores({ genres: 'id, name', bands: 'id, name, *genreIds -> genres.id', albums: 'id,...
Unfortunately, dexie-relationships does only work in one level relations.
The code is bundled using rollupjs as an umd module, treating default export differently than how webpack interprets it (rollup default exports are compatible with the `var module = require('module')...
Thanks for the request. Indeed support for many-to-many would be a nice feature. Part of the problem is how it parses indexes, but I believe that wouldn't solve it all....
multiEntry indexes generally in indexedDB works on array properties rather than ordinary properties in such way that you can put an arbitrary number of keys into the array and a...
In Dexie 4.0, there's a new optional argument to [Dexie.delete()](https://dexie.org/docs/Dexie/Dexie.delete()): `{disableAutoOpen: false}`, This will in practice clear the database as it will be recreated automatically on the next call to...