InsertColumn

Class InsertColumn

This attribute defines if a column in the destination is inserted.

Inheritance
InsertColumn
Inherited Members
Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
    [AttributeUsage(AttributeTargets.Property)]
public sealed class InsertColumn : Attribute
Examples

public class MyPoco { [IdColumn] public int Key { get; set; } [InsertColumn] public string ValueToInsert { get;set; } public string IgnoredValue { get;set; } }

Constructors

InsertColumn()

Declaration
    public InsertColumn()

Properties

InsertPropertyName

Name of the property that is used in the update

Declaration
    public string InsertPropertyName { get; set; }
Property Value
TypeDescription
string