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