2 writes to autoSync
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
406set { this.autoSync = value; } 411set { this.autoSync = (value != null) ? (AutoSync)Enum.Parse(typeof(AutoSync), value) : AutoSync.Default; }
3 references to autoSync
System.Data.Linq (3)
parent\DbmlShared\Mapping.cs (3)
405get { return this.autoSync; } 410get { return this.autoSync != AutoSync.Default ? this.autoSync.ToString() : null; }