EntityContainer.GetEntitySet<TEntity> Method
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Gets the EntitySet for the specified Entity type.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
Public Function GetEntitySet(Of TEntity As Entity) As EntitySet(Of TEntity)
'Usage
Dim instance As EntityContainer
Dim returnValue As EntitySet(Of TEntity)
returnValue = instance.GetEntitySet()
public EntitySet<TEntity> GetEntitySet<TEntity>()
where TEntity : Entity
public:
generic<typename TEntity>
where TEntity : Entity
EntitySet<TEntity>^ GetEntitySet()
member GetEntitySet : unit -> EntitySet<'TEntity> when 'TEntity : Entity
JScript does not support generic types and methods.
Type Parameters
- TEntity
The entity type.
Return Value
Type: System.ServiceModel.DomainServices.Client.EntitySet<TEntity>
An EntitySet for the specified Entity type.
Exceptions
Exception | Condition |
---|---|
[InvalidOperationExcpetion] | An EntitySet does not exist for the specified type. |