Class DatasetComparison<T>
Comparison results between two dataset versions.
public class DatasetComparison<T>
Type Parameters
TThe numeric data type used for calculations.
- Inheritance
-
DatasetComparison<T>
- Inherited Members
Properties
RecordsAdded
Gets or sets the number of added records.
public long RecordsAdded { get; set; }
Property Value
RecordsModified
Gets or sets the number of modified records.
public long RecordsModified { get; set; }
Property Value
RecordsRemoved
Gets or sets the number of removed records.
public long RecordsRemoved { get; set; }
Property Value
SchemaChanges
Gets or sets the schema changes.
public List<string> SchemaChanges { get; set; }
Property Value
StatisticalChanges
Gets or sets the statistical changes.
public Dictionary<string, (T OldValue, T NewValue)> StatisticalChanges { get; set; }
Property Value
- Dictionary<string, (T OldValue, T NewValue)>
Version1
Gets or sets the first version.
public int Version1 { get; set; }
Property Value
Version2
Gets or sets the second version.
public int Version2 { get; set; }