Table of Contents

Class DatasetComparison<T>

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Comparison results between two dataset versions.

public class DatasetComparison<T>

Type Parameters

T

The 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

long

RecordsModified

Gets or sets the number of modified records.

public long RecordsModified { get; set; }

Property Value

long

RecordsRemoved

Gets or sets the number of removed records.

public long RecordsRemoved { get; set; }

Property Value

long

SchemaChanges

Gets or sets the schema changes.

public List<string> SchemaChanges { get; set; }

Property Value

List<string>

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

int

Version2

Gets or sets the second version.

public int Version2 { get; set; }

Property Value

int