Class DataMergeOutputColumn
- Namespace
- FluentCommand.Merge
- Assembly
- FluentCommand.SqlServer.dll
Represents a column in the output of a data merge operation, including its name, value type, and value changes.
public class DataMergeOutputColumn
- Inheritance
-
DataMergeOutputColumn
- Inherited Members
Constructors
DataMergeOutputColumn()
public DataMergeOutputColumn()
Properties
Current
Gets or sets the current value of the column after the merge operation.
public object Current { get; set; }
Property Value
- object
The value of the column after the merge.
Name
Gets or sets the name of the column.
public string Name { get; set; }
Property Value
- string
The name of the column as it appears in the data source or target.
Original
Gets or sets the original value of the column before the merge operation.
public object Original { get; set; }
Property Value
- object
The value of the column before the merge.
Type
Gets or sets the data type of the column value.
public Type Type { get; set; }