2 writes to updateCheck
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
396set { this.updateCheck = value; } 401set { this.updateCheck = (value == null) ? UpdateCheck.Always : (UpdateCheck)Enum.Parse(typeof(UpdateCheck), value); }
3 references to updateCheck
System.Data.Linq (3)
parent\DbmlShared\Mapping.cs (3)
395get { return this.updateCheck; } 400get { return this.updateCheck != UpdateCheck.Always ? this.updateCheck.ToString() : null; }