I am trying some paging and sorting stuffs in ASP.net core MVC 6 application. But when I pass array like query string MVC action unable to parse it to list.
Query String looks like :
take=10&skip=0&page=1&pageSize=10&sort%5B0%5D%5Bfield%5D=price&sort%5B0%5D%5Bdir%5D=asc
Model for it looks like:
This is the query string which i am getting at server:

Count for Sort Array or List is always 0.

Can you please suggest a work around. It should parse it correctly but not getting where things are wrong.
