Title here
Summary here
This attribute defines if a column in the destination is inserted.
[AttributeUsage(AttributeTargets.Property)]
public sealed class InsertColumn : Attributepublic class MyPoco { [IdColumn] public int Key { get; set; } [InsertColumn] public string ValueToInsert { get;set; } public string IgnoredValue { get;set; } }
public InsertColumn()Name of the property that is used in the update
public string InsertPropertyName { get; set; }| Type | Description |
|---|---|
| string |