Link<T>.HasLoadedOrAssignedValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies whether the Link<T> has loaded or assigned a value.
public:
property bool HasLoadedOrAssignedValue { bool get(); };
public bool HasLoadedOrAssignedValue { get; }
member this.HasLoadedOrAssignedValue : bool
Public ReadOnly Property HasLoadedOrAssignedValue As Boolean
Property Value
true
if the Link<T> has either loaded or assigned a value; otherwise, false
.
Remarks
"Loaded" means that the data was loaded during materialization or at deferred loading. "Assigned" means that you have manually given the data a value.
LINQ to SQL uses this property to make sure that the Link<T> has a value, so that accessing it will not trigger deferred loading.