PkMapping
Primary key column mapping between source and target.
public sealed record PkMapping : IEquatable<PkMapping>
Constructors
PkMapping
public PkMapping(string SourceColumn, string TargetColumn)
Primary key column mapping between source and target.
| Parameter | Type | Description |
|---|---|---|
SourceColumn |
String |
Column name in source table. |
TargetColumn |
String |
Column name in target table. |
Properties
SourceColumn
public string SourceColumn { get; init; }
Column name in source table.
TargetColumn
public string TargetColumn { get; init; }
Column name in target table.