我是初学者 ASP.net,我想在帖子中显示所有评论。PostController 中的 Detail() 方法只显示帖子内容,我不知道如何处理 Detail() 方法来显示帖子中的评论。
希望有人可以帮助我,非常感谢。
我有两个模型
public class Post
{
public int PostID { get; set; }
public string Title{ get; set; }
public string Content{ get; set; }
}
public class Comment
{
public int CommentID { get; set; }
public int PostID { get; set; }
public string Content { get; set; }
}
这是后控制器
public class PostController : Controller
{
//////
public ViewResult Detail(int id )
{
Post viewpost= (repository.Posts.Single(p => p.PostID == id));
return View(viewpost);
}
////////////////
}