We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DeleteAsync not working correctly with .Take() after upgrade from 8.103.1 to 8.103.3
Code example
var person1 = await Context.Set<PersonEntity>() .AsNoTracking() .FirstOrDefaultAsync(); await Context.Set<PersonEntity>() .AsNoTracking() .Where(p => p.Id == person1.Id) .Take(1) .DeleteAsync(); var person2 = await Context.Set<PersonEntity>() .AsNoTracking() .FirstOrDefaultAsync(p => p.Id == person1.Id); // person2 is not null
If we remove the ".Take(1)" then person2 is null and it works correctly.
The text was updated successfully, but these errors were encountered:
Hello @r-ising ,
Thank you for reporting.
We will look at it.
Best Regards,
Jon
Sorry, something went wrong.
Hello @r-ising .
Just to confirm that the issue has been fixed.
The fix will be released on September 24.
@JonathanMagnan Thanks, that sounds good to me.
The v8.103.4.0 has been released today: https://github.com/zzzprojects/EntityFramework-Plus/releases/tag/8.103.4.0
v8.103.4.0
Let me know if my developer correctly fixed your issue.
JonathanMagnan
No branches or pull requests
1. Description
DeleteAsync not working correctly with .Take() after upgrade from 8.103.1 to 8.103.3
2. Any further technical details
Code example
If we remove the ".Take(1)" then person2 is null and it works correctly.
Further technical details
The text was updated successfully, but these errors were encountered: