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

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

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