5 references to Always
System.Data.Linq (5)
ChangeDirector.cs (1)
363if (check == UpdateCheck.Always ||
Mapping\Attributes.cs (1)
174check = UpdateCheck.Always;
Mapping\MappingSource.cs (1)
599cm.UpdateCheck = (updateCheck == null) ? UpdateCheck.Always : (UpdateCheck)Enum.Parse(typeof(UpdateCheck), updateCheck);
parent\DbmlShared\Mapping.cs (2)
400get { return this.updateCheck != UpdateCheck.Always ? this.updateCheck.ToString() : null; } 401set { this.updateCheck = (value == null) ? UpdateCheck.Always : (UpdateCheck)Enum.Parse(typeof(UpdateCheck), value); }