I have a view where I want to show comments for a book. I render the view where I show a book like this:
public ActionResult Show(int id)
{
var model = _repository.GetSeriesById(id);
return View(model);
}
In the View I show comments by using the model. (Series has comments and comments have a user id).
@model Models.Series @{
var comments = Model.Comments.ToList();
}
I can then loop through the comments to display message etc.
@foreach(var comment in comments)
{
@comment.Created
@comment.Message
}
My issue is when I try to do this:
@comment.User.id
I get a null reference error. I understand you can use the include attribute in the repository to include foreign keys like this:
var comments = _db.Comments.Include("User").Where(sId => sId.Id == seriesId).ToList();
But its not possible to do this in my controller as I am sending in a series model. So how can I show the user who posted the comment in my view?