Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace:   System.Web.Http.OData.Formatter.Serialization
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | SelectExpandNode() | Creates a new instance of the SelectExpandNode class. | 
| .jpeg) | SelectExpandNode(SelectExpandClause, IEdmEntityType, IEdmModel) | Creates a new instance of the SelectExpandNode class describing the set of structural properties, navigation properties, and actions to select and expand for the given selectExpandClause. | 
See Also
SelectExpandNode Class
System.Web.Http.OData.Formatter.Serialization Namespace
Return to top
SelectExpandNode Constructor ()
Creates a new instance of the SelectExpandNode class.
Syntax
public SelectExpandNode()
public:
SelectExpandNode()
new : unit -> SelectExpandNode
Public Sub New
Remarks
The default constructor is for unit testing only.
Return to top
SelectExpandNode Constructor (SelectExpandClause, IEdmEntityType, IEdmModel)
Creates a new instance of the SelectExpandNode class describing the set of structural properties, navigation properties, and actions to select and expand for the given selectExpandClause.
Syntax
public SelectExpandNode(
    SelectExpandClause selectExpandClause,
    IEdmEntityType entityType,
    IEdmModel model
)
public:
SelectExpandNode(
    SelectExpandClause^ selectExpandClause,
    IEdmEntityType^ entityType,
    IEdmModel^ model
)
new : 
        selectExpandClause:SelectExpandClause *
        entityType:IEdmEntityType *
        model:IEdmModel -> SelectExpandNode
Public Sub New (
    selectExpandClause As SelectExpandClause,
    entityType As IEdmEntityType,
    model As IEdmModel
)
Parameters
- selectExpandClause 
 Type: Microsoft.Data.OData.Query.SemanticAst.SelectExpandClause- The parsed $select and $expand query options. 
- entityType 
 Type: Microsoft.Data.Edm.IEdmEntityType- The entity type of the entry that would be written. 
- model 
 Type: Microsoft.Data.Edm.IEdmModel- The IEdmModel that contains the given entity type. 
Return to top