When I am trying to compile the following code:...var post = iPostService.GetAll().Select(x => (x.Title, x.Author));
...I get the compiler error: 'An expression tree may not contain a tuple literal.'...So I also tried this: ...var post = iPostService.GetA...