Share via


FunctionConfiguration.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.FunctionConfiguration ReturnsCollectionViaEntitySetPath<TElementEntityType> (string entitySetPath) where TElementEntityType : class;
member this.ReturnsCollectionViaEntitySetPath : string -> Microsoft.AspNet.OData.Builder.FunctionConfiguration (requires 'ElementEntityType : null)
Public Function ReturnsCollectionViaEntitySetPath(Of TElementEntityType As Class) (entitySetPath As String) As FunctionConfiguration

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

Type Parameters

TElementEntityType

The type that is an EntityType

Parameters

entitySetPath
String[]

The entitySetPath which contains the returned EntityType instances

Returns

Applies to