10 references to AutoInc
System.Data (10)
fx\src\data\System\Data\DataColumn.cs (10)
257
this.
AutoInc
.Auto = value;
266
this.
AutoInc
.SetCurrent(value, this.FormatProvider);
301
this.
AutoInc
.Seed = value;
325
this.
AutoInc
.Step = value;
601
this.
AutoInc
.Auto = inc.Auto; // recreate with correct datatype
602
this.
AutoInc
.Seed = inc.Seed;
603
this.
AutoInc
.Step = inc.Step;
608
this.
AutoInc
.Current = (System.Numerics.BigInteger)(long)inc.Current;
611
this.
AutoInc
.Current = checked((long)(System.Numerics.BigInteger)inc.Current);
1169
this.
AutoInc
.SetCurrentAndIncrement(_storage.Get(record));