Use the following attribute in the top of the mapping file to ensure your update statements are as succinct as possible
Dynamic-update="true"
This will ensure only those column values that have changed actually exist in the SET clause of the UPDATE statement, which is useful if your tables have triggers on them guarded by the TSQL IF UPDATE(MyColumnName) type checks.
No comments:
Post a Comment