I'm trying to figure out server-side processing in Datatables.net with an asp.net core WebApi-Controller.
DT is sending an http-get to the controller with some given parameters as described here: Serverside-Description
My problem now is how to get the value of the search[value] string parameter in my controller. This is the parameter with value "Hal" sent to the controller:
But as you can see here the value of search is null.
All other parameters were filled in my controller.
So I think the problem is this search**[value]**-thing. How do I tell the controller to read this parameter?
As you see in my second screenshot I also tried to define were to get the parameter from. But wether [FromHeader] nor [FromQuery] works.
Thanks for your help and suggestions. Patrick