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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I'm currently using: EF COre 7.0.0-rc.1.22410.9, .NET 7.0.100-preview.7.22377.5 Visual Studio Version 17.2.3
TagWith compiles when composed with ExecuteUpdate and DeleteUpdate methods:
context.People.Where(p => p.LastName == "Lehrman").TagWith("BulkUpdate") .ExecuteUpdate(s => s.SetProperty(c => c.LastName, c => "Lerman"));
... but doesn't put the comment into the SQL. Log:
info: 8/12/2022 10:31:32.136 RelationalEventId.CommandExecuted[20101] (Microsoft.EntityFrameworkCore.Database.Command) Executed DbCommand (11ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] UPDATE [p] SET [p].[LastName] = N'Lerman' FROM [People] AS [p] WHERE [p].[LastName] = N'Lehrman'
The text was updated successfully, but these errors were encountered:
Add support for TagWith on ExecuteDelete/Update
23227c8
Resolves #28690
e26f52a
Add support for TagWith on ExecuteDelete/Update (#28782)
4b6010e
be33de6
smitpatel
No branches or pull requests
I'm currently using:
EF COre 7.0.0-rc.1.22410.9,
.NET 7.0.100-preview.7.22377.5
Visual Studio Version 17.2.3
TagWith compiles when composed with ExecuteUpdate and DeleteUpdate methods:
... but doesn't put the comment into the SQL.
Log:
The text was updated successfully, but these errors were encountered: