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