Title here
Summary here
This attribute defines if a column in the destination is updated. Use the IdColumn attribute to define if a row in the destination matches with your object. If they match, you can use the UpdateColumn to describe which columns are actually updated. This is optional - if you don't provide any update columns, by default all non id columns are updated.
public class MyPoco { [IdColumn] public int Key { get; set; } [UpdateColumn] public string ValueToUpdate { get;set; } public string IgnoredValue { get;set; } }
Name of the property that is used in the update
Type | Description |
---|---|
string |