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