Class Mapping
Defines the mapping between a column/field/item in a data source and a column/field/item in the data destination.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class Mapping
Constructors
| Improve this DocMapping(String, String)
Initializes a new instance of the Mapping class.
Declaration
public Mapping(string source, string destination)
Parameters
Type | Name | Description |
---|---|---|
System.String | source | The name of the source column/field/item within the data source. |
System.String | destination | The name of the destination column/field/item within the data destination. |
Properties
| Improve this DocDestination
Get the name of the column/field/item being mapped in the data destination.
Declaration
public string Destination { get; }
Property Value
Type | Description |
---|---|
System.String | The string value of the column/field/item being mapped in the data destination. |
Source
Gets the name of the column/field/item being mapped in the data source.
Declaration
public string Source { get; }
Property Value
Type | Description |
---|---|
System.String | The string value of the column/field/item being mapped in the data source. |