Esempio n. 1
0
        void IMListPrivate.ForceRowId(int index, PrimaryKey rowId)
        {
            var prev = this.innerList[index];

            this.innerList[index] = new RowIdElement(prev.Element, rowId, null);
        }
Esempio n. 2
0
        void IMListPrivate.ForceRowId(int index, PrimaryKey rowId)
        {
            var prev = this.innerList[index];

            this.innerList[index] = new RowIdValue(prev.Value, rowId, null);
        }
Esempio n. 3
0
 public RowIdElement(T value, PrimaryKey rowId, int?oldIndex)
 {
     this.Element  = value;
     this.RowId    = rowId;
     this.OldIndex = oldIndex;
 }
Esempio n. 4
0
 public RowIdValue(T value, PrimaryKey rowId, int?oldIndex)
 {
     this.Value    = value;
     this.RowId    = rowId;
     this.OldIndex = oldIndex;
 }