Title here
Summary here
This attribute defines if the column is used as an Id for the DbMerge or the DbDestination.
[AttributeUsage(AttributeTargets.Property)]
public sealed class IdColumn : Attributepublic class MyPoco : MergeableRow
{
[IdColumn]
public int Key { get; set; }
public string Value {get;set; }
}This property is used as an Id column for a Merge operation.
public IdColumn()Name of the property used as Id
public string IdPropertyName { get; set; }| Type | Description |
|---|---|
| string |