Martin Adámek
Martin Adámek
This is much more complicated, if you think it's easy, send a PR 😉
Thanks for the write up. I guess the biggest question for me was how to handle FK constraints, but I already understood they are simply omitted, as its not possible...
Sure, but looking at the PR it's 10k LoC, so if you want the PR to be merged, please try to do something smaller so it is reviewable :] I...
> One thing i probably would say though is that this is probably best left til after foreign key migrations are supported as foreign key constraints are also prefixable Looks...
Well, done but not really. The issue I raised is still valid/opened and the use case I needed is still not possible to do with knex. But there is a...
FYI the fix in knex was still not fixing the underlying issue, but I managed to get around that (as always, by monkey patching knex :trollface:). Things are in v5,...
Well, yes and no. I say this every time I see another blocker caused by knex :D Latest blocker is actually the sqlite diffing, as to generate down migrations it...
I've been struggling with fixing this for quite some time unfortunately, almost got it fixed but it would break `em.create()` as it is also using hydrator :/ Need to move...
Calling this: ```typescript, const posts = await orm.em.find(Post, { title: "Example" }, { populate: ["comments"], strategy: LoadStratetgy.JOINED, // you need to set it explicitly }); ``` will currently do a...
No, its not being worked on. Best way to get something fixed is sending a PR. But tbh I am not sure if this is what I'd like to see...