You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating columns mapped to a single table within a TPT hierarchy:
_=awaitctx.SpecialBlogs.ExecuteUpdateAsync(
s =>s.SetProperty(b =>b.SpecialProperty,"foo"));
Updating the main table of an entity with entity splitting
As long as updates only affect columns on the main table, this now works.
Unfortunately, updates to any of the split tables fail on SQL Server for other, architectural reasons, see #31407. On Sqlite they pass, because a different query shape is generated.