3 writes to autoInc
System.Data (3)
fx\src\data\System\Data\DataColumn.cs (3)
273
return (this.autoInc ?? (this.
autoInc
= ((this.DataType == typeof(System.Numerics.BigInteger))
600
this.
autoInc
= null;
1487
clone.
autoInc
= this.autoInc.Clone();
17 references to autoInc
System.Data (17)
fx\src\data\System\Data\DataColumn.cs (17)
236
return ((null !=
autoInc
) && (
autoInc
.Auto));
263
get { return ((null != this.
autoInc
) ? this.
autoInc
.Current : this.AutoIncrementSeed); }
273
return (this.
autoInc
?? (this.autoInc = ((this.DataType == typeof(System.Numerics.BigInteger))
296
return ((null != this.
autoInc
) ? this.
autoInc
.Seed : 0L);
320
return ((null != this.
autoInc
) ? this.
autoInc
.Step : 1L);
596
if (null != this.
autoInc
) {
599
AutoIncrementValue inc = this.
autoInc
;
604
if (this.
autoInc
.DataType == inc.DataType) {
605
this.
autoInc
.Current = inc.Current;
1486
if (null != this.
autoInc
) {
1487
clone.autoInc = this.
autoInc
.Clone();
1552
object value = this.
autoInc
.Current;
1553
this.
autoInc
.MoveAfter();