DataServiceCollection<T>.Load Method (T)
Loads a single entity object into the collection.
Not supported by the WCF Data Services 5.0 client for Silverlight.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public Sub Load ( _
item As T _
)
'Usage
Dim instance As DataServiceCollection
Dim item As T
instance.Load(item)
public void Load(
T item
)
public:
void Load(
T item
)
member Load :
item:'T -> unit
public function Load(
item : T
)
Parameters
- item
Type: T
Entity object to be added.
Remarks
Calling the Load method attaches the object, if it is not already attached to the DataServiceContext that is associated with the DataServiceCollection<T>.
When an object is attached by using the Load method, all related objects are also attached.