Initializes a new instance of the SelectExpandQueryOption class.
Namespace:   System.Web.OData.Query
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
public SelectExpandQueryOption(
    string select,
    string expand,
    ODataQueryContext context,
    ODataQueryOptionParser queryOptionParser
)
public:
SelectExpandQueryOption(
    String^ select,
    String^ expand,
    ODataQueryContext^ context,
    ODataQueryOptionParser^ queryOptionParser
)
new : 
        select:string *
        expand:string *
        context:ODataQueryContext *
        queryOptionParser:ODataQueryOptionParser -> SelectExpandQueryOption
Public Sub New (
    select As String,
    expand As String,
    context As ODataQueryContext,
    queryOptionParser As ODataQueryOptionParser
)
Parameters
- select 
 Type: System.String- The $select query parameter value. 
- expand 
 Type: System.String- The $select query parameter value. 
- context 
 Type: System.Web.OData.ODataQueryContext- The ODataQueryContext which contains the IEdmModel and some type information. 
- queryOptionParser 
 Type: Microsoft.OData.Core.UriParser.ODataQueryOptionParser- The ODataQueryOptionParser which is used to parse the query option. 
See Also
SelectExpandQueryOption Class
System.Web.OData.Query Namespace
Return to top