ODataUriParser.ParseSelectAndExpand Method
ParseSelectAndExpand from an instantiated class
Namespace: Microsoft.Data.OData.Query
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
Public Function ParseSelectAndExpand ( _
select As String, _
expand As String, _
elementType As IEdmEntityType, _
entitySet As IEdmEntitySet _
) As SelectExpandClause
'Usage
Dim instance As ODataUriParser
Dim select As String
Dim expand As String
Dim elementType As IEdmEntityType
Dim entitySet As IEdmEntitySet
Dim returnValue As SelectExpandClause
returnValue = instance.ParseSelectAndExpand(select, _
expand, elementType, entitySet)
public SelectExpandClause ParseSelectAndExpand(
string select,
string expand,
IEdmEntityType elementType,
IEdmEntitySet entitySet
)
public:
SelectExpandClause^ ParseSelectAndExpand(
String^ select,
String^ expand,
IEdmEntityType^ elementType,
IEdmEntitySet^ entitySet
)
member ParseSelectAndExpand :
select:string *
expand:string *
elementType:IEdmEntityType *
entitySet:IEdmEntitySet -> SelectExpandClause
public function ParseSelectAndExpand(
select : String,
expand : String,
elementType : IEdmEntityType,
entitySet : IEdmEntitySet
) : SelectExpandClause
Parameters
- select
Type: System.String
the select to parse
- expand
Type: System.String
the expand to parse
- elementType
Type: Microsoft.Data.Edm.IEdmEntityType
Type that the select and expand clauses are projecting.
- entitySet
Type: Microsoft.Data.Edm.IEdmEntitySet
EntitySet that the elements being filtered are from. This can be null, if so that null will propagate through the resulting SelectExpandClause.
Return Value
Type: Microsoft.Data.OData.Query.SemanticAst.SelectExpandClause
A SelectExpandClause with the semantic representation of select and expand terms