[HttpGet]
[EnableQuery]
public IActionResult Get(ODataQueryOptions<MyInternetHatlariDto> options)
{
//I don't want to use "context" how can I use your library here.
return Ok(_context.MyInternetHatlaris.Get(_mapper, options));
}
I also use your library. but since this is not supported, I have to use the database object directly. Do you think support should come or is it unnecessary?
I am using "odata" in my web api project. and "automapper" has that data support. https://github.com/AutoMapper/AutoMapper.Extensions.OData
my method:
I also use your library. but since this is not supported, I have to use the database object directly. Do you think support should come or is it unnecessary?