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
I'm interested in fixing this issue, however I'm not the author of this project which seems to be dead.
I'm currently maintaining a fork of EFUtilities which already includes many fixes. Could you try and see if the bug you found is still present in my fork? If so, I recommend opening an issue there and I'll see what I can do.
Hello
there is a bug when using the following code:
EFBatchOperation.For(db, db.Accounts)
.Where(x => x.AccountID == glEntry.AccountID)
.Update(x => x.Balance, x => x.Balance + delta);
sql profiler:
exec sp_executesql N'UPDATE [dbo].[Account] SET [Balance] = ([Balance] + @p__linq__0) WHERE [AccountID] = @p__linq__0',N'@p__linq__0 bigint,@p__linq__0 decimal(11,2)',@p__linq__0=10001,@p__linq__0=-100000000.00
seems the where parameter (@p__linq__0) is using same update parameter name (@p__linq__0)
The text was updated successfully, but these errors were encountered: