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?