Secondly, the currency is at the record level, is there any support for it at the field level? For example, take
Table1 (id, field1, field2, field3)
(1, 1, 1, 1)
(2, 2, 2, 2)
If we load the first record (1, 1, 1) and only change field2 to 2 I want the sql to be produced to be:
Code: Select all
update Table1 set field2 = 2 where id = 1 and field2 = 1
Code: Select all
update Table1 set field2 = 2 where id = 1 and field1 = 1 and field2 = 1 and field3 = 1