-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Bug with Take() #24726
Labels
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
type-bug
Milestone
Comments
Likely fixed in 6.0 |
What should I do to solve the problem now? Could you please provide a workaround? |
maumar
added a commit
that referenced
this issue
Apr 27, 2021
Issue has already been fixed by earlier query pipeline refactoring, adding regression tests
I have verified this bug is fixed in current bits. @vvwvann unfortunately there is no good workaround in 5.0. You need to remove the Take on the top level and filter the results on the client. |
maumar
added
the
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
label
Apr 27, 2021
maumar
added a commit
that referenced
this issue
Apr 27, 2021
Issue has already been fixed by earlier query pipeline refactoring, adding regression tests
ghost
pushed a commit
that referenced
this issue
Apr 27, 2021
Issue has already been fixed by earlier query pipeline refactoring, adding regression tests
haydenmc
added a commit
to Purdue-io/PurdueApi
that referenced
this issue
Oct 5, 2021
This change removes the limit on query results due to an EF bug dotnet/efcore#24726 . This bug is fixed in .NET 6. Once .NET 6 is released and we're able to update we can re-introduce paging limits.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
type-bug
I encountered a situation when
Take()
throws an exception, in a simple code. I assume that this is a bug.Npgsql.EntityFrameworkCore.PostgreSQL: "5.0.5.1"
This code throws an exception with next data
It seems to me that I have encountered a bug, since if you remove
Take(5)
everything will work fine:I can provide more information if needed.
The text was updated successfully, but these errors were encountered: