I'm currently executing Web API with oData filter requests as follows:
public IQueryable<OrganizationViewModel> Get(ODataQueryOptions<Organization> oDataQuery)
{
var query = new FindOrganizationsQuery(oDataQuery);
var result =_findOrganizationsQueryHandler.Execute(query);
return result.Organizations.Select(o => new OrganizationViewModel { Id = o.PublicId, Name = o.Name });
}
The handler looks like:
public FindOrganizationsQueryResult Execute(FindOrganizationsQuery request)
{
var organizations = request.ODataQuery.ApplyTo(_mgpQueryContext.Organizations).Cast<Organization>();
return new FindOrganizationsQueryResult(organizations);
}
And the query class looks like:
public class FindOrganizationsQuery
{
public FindOrganizationsQuery(ODataQueryOptions<Organization> oDataQuery)
{
ODataQuery = oDataQuery;
}
public ODataQueryOptions<Organization> ODataQuery { get; set; }
}
So if I pass an oData filter with the request, it is handled nicely and this all works fine.
But now, instead of passing the type ODataQueryOptions to the Get operation, I would like to have the FindOrganizationsQuery class, like:
public IQueryable<OrganizationViewModel> FindOrganizations(FindOrganizationsQuery query)
{
// query is null
}
However, the query parameters is always null. How can I pass the oData filter if the ODataQueryOptions parameters is in another class?
You can write a custom parameter binding attribute for
FindOrganizationsQuery
the same way we do forODataQueryOptions
and then attribute yourFindOrganizationsQuery
with that attribute.Some sample code below,
and the extension method I copied from web API source code as it is not public.
I have the complete sample here.