The interface for a collection of entities that appear as the value of a property on an entity instance
            
Namespace: BrightstarDB.EntityFrameworkAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
public interface IEntityCollection<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable, IEntityCollection
  | 
| Visual Basic | 
|---|
Public Interface IEntityCollection(Of T)
	Inherits ICollection(Of T), IEnumerable(Of T), IEnumerable, 
	IEntityCollection  | 
| Visual C++ | 
|---|
generic<typename T>
public interface class IEntityCollection : ICollection<T>, 
	IEnumerable<T>, IEnumerable, IEntityCollection  | 
| F# | 
|---|
type IEntityCollection<'T> =  
    interface
        interface ICollection<'T>
        interface IEnumerable<'T>
        interface IEnumerable
        interface IEntityCollection
    end | 
Type Parameters
- T
 [Missing <typeparam name="T"/> documentation for "T:BrightstarDB.EntityFramework.IEntityCollection`1"]
See Also