Method Select
| Improve this Doc View SourceSelect<T>(Column<T>, Column<T>)
Build the ColumnMapping between source column and target column.
Declaration
public ColumnMapper Select<T>(Column<T> sourceColumn, Column<T> targetColumn)
Parameters
| Type | Name | Description |
|---|---|---|
| Column<T> | sourceColumn | The source column. |
| Column<T> | targetColumn | The target column. |
Returns
| Type | Description |
|---|---|
| ColumnMapper | This ColumnMapper. |
Type Parameters
| Name | Description |
|---|---|
| T | Data type of the columns. |
Select(Column, Int32)
Build the ColumnMapping between source column and target column ordinal.
Declaration
public ColumnMapper Select(Column sourceColumn, int targetColumnOrdinal)
Parameters
| Type | Name | Description |
|---|---|---|
| Column | sourceColumn | The source column. |
| System.Int32 | targetColumnOrdinal | The target column ordinal. |
Returns
| Type | Description |
|---|---|
| ColumnMapper | This ColumnMapper. |