Я пытаюсь поддерживать сортировку с помощью элемента управления WebGrid
в MVC3, который передает имя свойства моей модели в мои действия с помощью параметра sort
.
public class Agent {
public int Id { get; set; }
public string Name { get; set; }
}
[HttpGet]
public ActionResult Index(string sort = "Id", string sortdir = "ASC") {
// Define the parameter that we are going to use in the OrderBy clause.
var param = Expression.Parameter(typeof(Agent), "agent");
// Now we'll make our lambda function that returns the
// property's value by it's name.
var sortExpression = Expression.Lambda<Func<Agent, object>>(Expression.Property(param, sort), param);
var agents = entities.OrderBy(sortExpression).ToList();
var model = new PagedResult<Agent> {
CurrentPage = 1,
PageCount = 1,
PageSize = DefaultPageSize,
Results = agents,
RowCount = agents.Count
};
return View(model);
}
Этот код работает, когда я пытаюсь отсортировать свою модель по свойству Name
, которое имеет тип string
. Однако, если я пытаюсь отсортировать по Id
, я получаю сообщение об ошибке Expression of type 'System.Int32' cannot be used for return type 'System.Object'
.