EntityCollection<TEntity> Constructor

Definition

Initializes a new instance of the EntityCollection<TEntity> class.

public:
 EntityCollection();
public EntityCollection ();
Public Sub New ()

Remarks

This public constructor for EntityCollection<TEntity> is intended to be used by Object Services when deserializing object graphs. You should access an instance of EntityCollection<TEntity> from a navigation property instead of using this constructor.

To store an unrelated collection of objects of a specific entity type, such as the result of an ObjectQuery<T>, use an instance of List<T>.

Applies to