Esempio n. 1
0
 public RowDifference(SnapshotRowKey key, DifferenceType differenceType, SnapshotRow before, SnapshotRow after)
 {
     Key            = key;
     DifferenceType = differenceType;
     Before         = before;
     After          = after;
 }
Esempio n. 2
0
 internal RowBuilder(TableDefinition table, Snapshot snapshot)
 {
     _table    = table;
     _snapshot = snapshot;
     Row       = _snapshot.AddRow(table);
 }