Share via


ActionConfiguration.ReturnsCollectionViaEntitySetPath Method

Definition

Overloads

ReturnsCollectionViaEntitySetPath<TElementEntityType>(String)

Sets the return type to a collection of EntityType instances.

ReturnsCollectionViaEntitySetPath<TElementEntityType>(String[])

Sets the return type to a collection of EntityType instances.

ReturnsCollectionViaEntitySetPath<TElementEntityType>(String)

Sets the return type to a collection of EntityType instances.

public Microsoft.AspNet.OData.Builder.ActionConfiguration ReturnsCollectionViaEntitySetPath<TElementEntityType> (string entitySetPath) where TElementEntityType : class;
member this.ReturnsCollectionViaEntitySetPath : string -> Microsoft.AspNet.OData.Builder.ActionConfiguration (requires 'ElementEntityType : null)
Public Function ReturnsCollectionViaEntitySetPath(Of TElementEntityType As Class) (entitySetPath As String) As ActionConfiguration

Type Parameters

TElementEntityType

The type that is an EntityType

Parameters

entitySetPath
String

The entitySetPath which contains the returned EntityType instances

Returns

Applies to

ReturnsCollectionViaEntitySetPath<TElementEntityType>(String[])

Sets the return type to a collection of EntityType instances.

public Microsoft.AspNet.OData.Builder.ActionConfiguration ReturnsCollectionViaEntitySetPath<TElementEntityType> (params string[] entitySetPath) where TElementEntityType : class;
member this.ReturnsCollectionViaEntitySetPath : string[] -> Microsoft.AspNet.OData.Builder.ActionConfiguration (requires 'ElementEntityType : null)
Public Function ReturnsCollectionViaEntitySetPath(Of TElementEntityType As Class) (ParamArray entitySetPath As String()) As ActionConfiguration

Type Parameters

TElementEntityType

The type that is an EntityType

Parameters

entitySetPath
String[]

The entitySetPath which contains the returned EntityType instances

Returns

Applies to