-
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
Handle row-version columns in owned types with conversions #29730
Conversation
test/EFCore.SqlServer.FunctionalTests/OptimisticConcurrencySqlServerTest.cs
Outdated
Show resolved
Hide resolved
} | ||
else | ||
{ | ||
await context.SaveChangesAsync(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AndriySvyryd For TPT when the owned entity is updated, there is no DbUpdateConcurrencyException
test/EFCore.SqlServer.FunctionalTests/OptimisticConcurrencySqlServerTest.cs
Show resolved
Hide resolved
@AndriySvyryd I have made three comments which might indicate additional bugs, either known or not. |
src/EFCore.Relational/Metadata/Conventions/TableSharingConcurrencyTokenConvention.cs
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add another update to the tests and file the 2 new issues
Fixes #29689 Also add more end-to-end tests for optimistic concurrency, converters, owned types, inheritance, and table sharing.
f10256a
to
0de13fd
Compare
Fixes #29689
Also add more end-to-end tests for optimistic concurrency, converters, owned types, inheritance, and table sharing.