Alexander Pushkin
Results
2
issues of
Alexander Pushkin
### Description On simple update EntityFramework-Plus generate non-optimal sql request that leads to a deadlock problem example: ``` db.UserSession .Where(e => e.UserId == siteUserId && e.AuthSid != authSid) .Update(e =>...
I have a problem with this code: using (var context = new DataContext()) { context.Order .Where(order => order.OrderId == 1) .Update(x => new Order() { Comment = (x.Comment != null...