DataServiceCollection<T>.Load Method (IEnumerable<T>)
Loads a collection of entity objects 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 ( _
items As IEnumerable(Of T) _
)
'Usage
Dim instance As DataServiceCollection
Dim items As IEnumerable(Of T)
instance.Load(items)
public void Load(
IEnumerable<T> items
)
public:
void Load(
IEnumerable<T>^ items
)
member Load :
items:IEnumerable<'T> -> unit
public function Load(
items : IEnumerable<T>
)
Parameters
- items
Type: System.Collections.Generic.IEnumerable<T>
Collection of entity objects to be added to the DataServiceCollection<T>.
Remarks
Calling the Load method attaches all objects in the collection, if they are 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.