Link(Of T).HasLoadedOrAssignedValue Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Specifies whether the Link(Of T) has loaded or assigned a value.
Assembly: System.Data.Linq (in System.Data.Linq.dll)
Property Value
Type: System.Booleantrue if the Link(Of T) has either loaded or assigned a value; otherwise false.
"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(Of T) has a value, so that accessing it will not trigger deferred loading.
Show: