Open yv989c opened 11 months ago
Hi @yv989c ,
thanks for building this awesome library. The described improvement would help us a lot, any plans to work on this issue in the next time?
Best
Nils
Hi @yv989c ,
thanks for building this awesome library. The described improvement would help us a lot, any plans to work on this issue in the next time?
Best
Nils
Hi @nilzzzzzz,
First, thanks for the kind words.
Just an update on this: Yes, I've invested a lot of time working on this with good results, but I decided to pause to see how the EF team would address it. It seems clear now that they won't be providing the level of integration I've developed to make this work well with SQL Server. That said, if I release this, it will likely be under a different license model. Unfortunately, it’s not sustainable for me to continue putting this level of effort out there completely for free.
Hi @yv989c ,
this sounds reasonable to me and thank you for your feedback. If the licence model fees work with our business model, we are happy to support you.
It has caught my attention that the use of the
OPENJSON
function is causing performance regressions in EF8, as reported in https://github.com/dotnet/efcore/issues/32394. This seems to be caused by the opaque nature of the function to the query engine, which could result in suboptimal execution plans.QueryableValues currently depends on both
OPENJSON
and XML methods for functionality, and thus, it is impacted to some degree by these issues.Here are some potential solutions to address this problem:
These two approaches aim to provide the query engine with sufficient information to generate optimal execution plans, which is a priority. Consequently, this behavior should be enabled by default, with an option for users to opt out if desired.