-
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
Updating JSON column when query tracking is disabled throws #33862
Comments
@maumar , I see that you have self-assigned yourself a couple of days ago. Have you had the chance to investigate this bug in details? I have just tested on .NET 7 and it still fails. I hope that you'll fix it for some EF Core 8 patch version or at worst for the .NET 9 release. |
@vladislav-karamfilov no, I didn't investigate this issue yet. JSON is generally my area to look after, so I just assigned myself for now, so that other team members don't need to read through the issue. I will post my findings here when I get to it, but it may take some time - we have a big backlog of uninvestigated issues at the moment. |
workaround is to do manual update by adding the entry and setting the state to unchanged. This forces generation of all the shadow values. var entry = db.Entry(thing);
if (entry.State == EntityState.Detached)
{
db.Things.Add(thing);
}
entry.State = EntityState.Unchanged; |
@maumar , the project I'm working on (where I found this issue) is massive and we use the approach with manual update from the issue description (because of various reasons not related to this issue):
What are the consequences of using the new suggested manual update approach? What behavioral changes will we observe? Is there a way to narrow down the PS I see that you have put this in Backlog milestone. Does that mean that you don't plan to fix this for EF Core 9? And if the answer is "Yes", is there any specific reason (it seems like 2 major features of EF Core cannot cooperate because of a bug and thus I would consider this as important bug to fix)? |
looping in @ajcvickers and @AndriySvyryd, who are the domain experts, wrt consequences and subtleties of this approach vs the original one. As to your other question, Backlog milestone unfortunately means we are not planning to fix this bug in 9. Reason being, there is not much development time left before we close the release, the fix is likely non-trivial/risky, and there is a reasonable workaround. All those factors push this issue down in the priority for us, compared to other items the team is working on. |
This seems by-design to me. Marking for discussion by team. |
@ajcvickers , I'm not sure I understand. Aren't these major EF features (no query tracking + JSON columns) supposed to work together? Our team's expectation is to have this scenario working out of the box just like the query tracking ON + JSON columns are working nicely together. |
@vladislav-karamfilov If you're explicitly tracking entities and using shadow key properties, then you need to make sure that these shadow properties have been set appropriately. Alternatively, don't use shadow keys, which means that all the values will travel with the detached entity. |
@ajcvickers , we are not explicitly tracking entities and we are not doing anything specific with shadow properties and everything is working well for us. But recently we saw opportunity to use JSON columns for some of our entity props and we hit this issue. We don't know how to overcome it and IMHO it seems like something that should work perfectly out of the box. I hope you are going to fix it as soon as possible so we can leverage this EF feature soon. PS If you have any suggestions about a workaround, please share it with us. How will the one suggested @maumar affect our EF usage having in mind how we are using it? |
@vladislav-karamfilov Unfortunately, using owned entities results in this kind of issue. They are not a great match for JSON, since they are still entity types, just with hidden identity. Please vote for Add relational JSON mapping support for complex types, which should make this much better.
I mean calling Attach or Update on entities queried by a different context instance. See Explicitly Tracking Entities. |
I have already upvoted this issue and my colleagues will upvote too. I see that this is the most requested feature in the open issues list. Is there any chance for this issue to make it for the .NET 9 release?
I have read this article in the past but I will read it again to search for more info about this workaround. Thanks, @ajcvickers! |
File a bug
Setting a new value to a JSON-mapped column property (a non-collection or a collection one) when query tracking is disabled fails with
InvalidOperationException
. Enabling query tracking withoptionsBuilder.UseQueryTrackingBehavior(QueryTrackingBehavior.TrackAll)
fixes the issue but it is not an option for the project I'm working on.PS All is working well when we have primitive collections like
List<string>
in the entity instead of JSON object(s).Include your code
Include stack traces
Include provider and version information
EF Core version: 8.0.6
Database provider: Microsoft.EntityFrameworkCore.SqlServer
Target framework: .NET 8.0
Operating system: Windows 11
IDE: Visual Studio 2022 17.10.1
The text was updated successfully, but these errors were encountered: