Reputation: 14608
I am using SS 3.0.0.3 ActiveRecord. This query:
new Update<BillDetail>(provider)
.Set(bd => bd.DivisionDetails == divisionDetails)
.Where(bd => bd.BillNumber == documentId && bd.IsInvoice == true);
produces this SQL:
UPDATE `BillDetails`
SET `DivisionDetails`=@up_DivisionDetails
WHERE `BillNumber` = @0
Where did the IsInvoice part go? Am I doing something wrong here?
Upvotes: 1
Views: 572
Reputation:
Had this problem in previous releases but it was fixed - you sure you're using 3.0.0.3?
Upvotes: 2