-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SumAsync and CountAsync (maybe more) do not work with EF Core 3.1 #391
Comments
Hello @wertzui , Thank you for reporting. In fact, the library reference EF Core 1.1 Before doing this request, we will need to discuss in a new thread about how people would like we manage this library (we cannot simply upgrade the reference, otherwise people using v2.x will no longer be able to use it). I should create an issue about this in the coming weeks. So this issue will not be fixed this month but that's definitely something we will look and try to complete during the summer. Best Regards, Jon Performance Libraries Runtime Evaluation |
I had the same issue for LinqKit, see this link for my solution: I think the same logic can be applied for |
Yup @StefH , Using the major version to be the same as the |
Hello @wertzui , Sorry for the long delay, The v3.2.0 has been released: https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.DynamicLinq/3.2.0 Starting from this version, the library should now be compatible with EF Core 3.1 or greater. Best Regards, Jon |
Using these methods triggers a MethodNotFoundException on EF Core 3.1.
From what I've seen, this library still references EF Core 2.2 so this might be the problem.
This should also be supported on netcore2.1 which will only require a minimal change, because
TypeInfo
is gone, so there is noAsType()
method on it. InsteadGenericTypeParameterBuilder
directly inheritsType
.The text was updated successfully, but these errors were encountered: