DataServiceCollection<T> Constructor (IEnumerable<T>)

Initializes a new instance of the DataServiceCollection<T> class based on query execution.

Namespace:  System.Data.Services.Client
Assembly:  Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)

Syntax

'Declaration
Public Sub New ( _
    items As IEnumerable(Of T) _
)
'Usage
Dim items As IEnumerable(Of T)

Dim instance As New DataServiceCollection(items)
public DataServiceCollection(
    IEnumerable<T> items
)
public:
DataServiceCollection(
    IEnumerable<T>^ items
)
new : 
        items:IEnumerable<'T> -> DataServiceCollection
public function DataServiceCollection(
    items : IEnumerable<T>
)

Parameters

Remarks

The IEnumerable<T> collection of objects supplied for items is usually a query that returns the items in the collection. However, any IEnumerable<T> collection of the correct type can be supplied.

By default, automatic change tracking is enabled for a DataServiceCollection<T>. You can create an instance of DataServiceCollection<T> that uses manual change tracking when you create an instance using a constructor that enables you to supply a value of None for TrackingMode. When you use manual tracking, you must implement INotifyPropertyChanged and INotifyCollectionChanged and handle the raise events to manually report changes to the DataServiceContext.

See Also

Reference

DataServiceCollection<T> Class

DataServiceCollection<T> Overload

System.Data.Services.Client Namespace