Instead of calling:
var shows = _repository.ListShows("PublishDate");
to return a collection of objects sorted by the publish date, I would like to use a syntax like this:
var shows = _repository.ListShows(s => s.PublishDate);
What do I need to write to take advantage of the lambda as an argument?