当我将返回值设置为 a 时,我有一个 LINQ 查询有效List
,但是我只想返回一个IQueryable<Post>
. 我该怎么做?
public List<Post> GetPostByID(int id)
{
var thePost = (from p in _context.Posts
where p.Id == id
select p).ToList();
return thePost;
}