5 writes to source
System.Data.Linq (5)
Types.cs (5)
27this.source = null; 31this.source = source; 37this.source = link.source; 72this.source = SourceState<T>.Loaded; 78this.source = SourceState<T>.Assigned;
7 references to source
System.Data.Linq (7)
Types.cs (7)
37this.source = link.source; 41get { return this.source == null || this.HasLoadedValue || this.HasAssignedValue; } 49get { return this.source == SourceState<T>.Loaded; } 53get { return this.source == SourceState<T>.Assigned; } 61get { return this.source; } 65get { return this.source != null && !this.HasAssignedValue && !this.HasLoadedValue; } 71this.underlyingValue = Enumerable.SingleOrDefault(this.source);