I don´t know why my parameter "ParametroFiltro Filtro" is getting null, the other parameters "page" and "pageSize" is getting OK.
public class ParametroFiltro
{
    public string Codigo { get; set; }
    public string Descricao { get; set; }
}
My ApiController Get method:
public PagedDataModel<ParametroDTO> Get(ParametroFiltro Filtro, int page, int pageSize)
My ajax call:
var fullUrl = "/api/" + self.Api;
$.ajax({
    url: fullUrl,
    type: 'GET',
    dataType: 'json',
    data: { Filtro: { Codigo: '_1', Descricao: 'TESTE' }, page: 1, pageSize: 10 },
    success: function (result) {
        alert(result.Data.length);
        self.Parametros(result.Data);
    }
});
 
     
     
     
     
     
     
    
> Get([FromUri] PlantFilter filter, string sort)` On the server, `sort`would get populated, but not `filter.sort`: filter.sort = "", sort = "Name".
– Homer Oct 05 '16 at 14:59> Search(PlantFilter filter)`
– Homer Oct 05 '16 at 18:51