戻り値を に設定すると 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;
}