Merge v10/dev into infrastructure
This commit is contained in:
@@ -300,7 +300,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
|
||||
=> forUpdate ? Sql()
|
||||
.Select<ExternalLoginTokenDto>(r => r.Select(x => x.ExternalLoginDto))
|
||||
.From<ExternalLoginTokenDto>()
|
||||
.Append(" WITH (UPDLOCK)") // ensure these table values are locked for updates, the ForUpdate ext method does not work here
|
||||
.AppendForUpdateHint() // ensure these table values are locked for updates, the ForUpdate ext method does not work here
|
||||
.InnerJoin<ExternalLoginDto>()
|
||||
.On<ExternalLoginTokenDto, ExternalLoginDto>(x => x.ExternalLoginId, x => x.Id)
|
||||
: Sql()
|
||||
|
||||
Reference in New Issue
Block a user