Cast To Interface

前端 未结 2 349
长发绾君心
长发绾君心 2021-01-25 00:08

I am not getting any errors in my code, but my filter object is always null. When I run the debugger the filter object looks just like the sort object, a list with stuff in it.

2条回答
  •  温柔的废话
    2021-01-25 00:50

    Thanks for the help guys I talked to a friend of mine and he suggested I do this... So I guess I should not have been trying to cast the Lists and Interfaces.

        if(request.Sorts.Count == 1)
        {
            pRequest.SortMember = request.Sorts[0].Member;
            pRequest.SortDirection = (int)request.Sorts[0].SortDirection;
        }
    
        if (request.Filters.Count >= 1)
        {
            foreach(var item in request.Filters)
            {
                if(item is Kendo.Mvc.FilterDescriptor)
                {
                     var descriptor = (Kendo.Mvc.FilterDescriptor)item;
                     pRequest.Startdate = (DateTime)descriptor.ConvertedValue;
                }
            }                
        }
        else
        {
             var endDate = new TimeSpan(4000, 0, 0, 0, 0);
             pRequest.Startdate = DateTime.UtcNow - endDate;
        }
    

提交回复
热议问题