EntityContainer.GetEntitySet Method (Type)
[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 ( _
entityType As Type _
) As EntitySet
'Usage
Dim instance As EntityContainer
Dim entityType As Type
Dim returnValue As EntitySet
returnValue = instance.GetEntitySet(entityType)
public EntitySet GetEntitySet(
Type entityType
)
public:
EntitySet^ GetEntitySet(
Type^ entityType
)
member GetEntitySet :
entityType:Type -> EntitySet
public function GetEntitySet(
entityType : Type
) : EntitySet
Parameters
- entityType
Type: System.Type
The entity type.
Return Value
Type: System.ServiceModel.DomainServices.Client.EntitySet
A EntitySet for the specified Entity type.
Exceptions
Exception | Condition |
---|---|
[InvalidOperationExcpetion] | An EntitySet does not exist for the specified type. |