I want to combine the below the Statement into a single one as it contains the same Where Condition and Column
Update<TableName>
.Set<TableName.OrderNbr.EqualTo<@P.AsString>>
.Where<TableName.id.IsEqual<@P.AsInt>>
.Update(Base, new object[] { orderNbr, Account.Id });
Update<TableName>
.Set<TableName.Review.EqualTo<@P.AsBool>>
.Where<IAAccountAllocation.id.IsEqual<@P.AsInt>>
.Update(Base, new object[] { 1, Account.Id });