Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have a ViewModel set up for a blog:

public class PostViewModel
{
    public string Title { get; set; }
    public DateTime DateCreated { get; set; }
    public string Content { get; set; }
    public int CommentCount { get; set; }
    public ICollection<Topic> Topics { get; set; }
    public ICollection<Comment> Comments { get; set; }
}

Which works perfectly with the controller:

private MyDB db = new MyDB();

public ActionResult Index()
{
    var posts = (from p in db.Set<BlogPost>()
                 select new PostViewModel
                 {
                     Title = p.Title,
                     DateCreated = p.DateCreated,
                     Content = p.Content,
                     Topics = p.Topics,
                     Comments = p.Comments,
                     CommentCount = p.Comments.Count
                 }).ToList();

    return View(posts);
}

Given these two parts, I am able to foreach through the list and generate a blog post with corresponding comments and topics just fine. However, I would like to have a drop down list off to the side that has a list of topics in it. I am guessing I need to alter my ViewModel and HomeController as well, but I am just unsure of how to do that.

@Html.DropDownListFor(???????)

would then go into my Index.cshtml, but I don't know how I'd deal with that when everything else is coming in as a list?

share|improve this question
Do you need to display the topics only in the dropdownlist or do you need them elsewhere in the view, too? – John H Apr 13 '12 at 16:22

1 Answer

up vote 3 down vote accepted

You could adapt your view model so that it contains all the necessary information that the view requires. So you mentioned something about a lists of posts and a dropdown of topics. So it is pretty straightforward:

public class BlogViewModel
{
    public PostViewModel Post { get; set; }

    public string TopicID { get; set; }
    public IEnumerable<SelectListItem> Topics { get; set; }
}

and then of course you will have to adapt your controller action so that it fetches all the required information from your backend layers and create the proper view model to be passed to the view:

public ActionResult Index()
{
    var posts = (from p in db.Set<BlogPost>()
                 select new PostViewModel
                 {
                     Title = p.Title,
                     DateCreated = p.DateCreated,
                     Content = p.Content,
                     Topics = p.Topics,
                     Comments = p.Comments,
                     CommentCount = p.Comments.Count
                 }).ToList();

    IEnumerable<Topic> topics = ... go ahead and fetch the topics you want to show in the ddl

    var blog = new BlogViewModel
    {
        Posts = posts,
        Topics = topics.Select(t => new SelectListItem
        {
            Value = t.ID,
            Text = t.TopicText
        })
    };
    return View(blog);
}

and finally the view:

@model BlogViewModel
...
@Html.DropDownListFor(x => x.TopicID, Model.Topics)

and when you wanted to loop or something over the posts simply use Model.Posts in the view where you previously used Model directly because your view was strongly typed to IEnumerable<PostViewModel>.

share|improve this answer
Forgive me because I am new to this... when you say "go ahead and fetch the topics you want to show..." what vaguely should I be doing there? A LINQ query I presume, but I have much to learn... – pjb5064 Apr 13 '12 at 17:21
@pjb5064, I have strictly no idea where you are storing your topics, how are they stored, how you are fetching them and so on. So really can't help you further. Also this really has nothing to do wiTh ASP.NET MVC. If you have problems setting up a database and querying this database using some particular ORM such as EF please start a new question explaining your database schema and your domain entities and what exactly you are trying to fetch. – Darin Dimitrov Apr 13 '12 at 17:26
I am however getting an error on "Value = t.id" saying I can't convert int to string... t.id is a string in the BlogViewModel however... if I Convert.ToString(t.id) that error goes away and topics.Select gets underlined with "Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<System.Web.Mvc.SelectListItem>' to 'System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem>‌​'. An explicit conversion exists (are you missing a cast?) – pjb5064 Apr 13 '12 at 17:54
Oh, there are 2 SelectListItem classes. Be careful. You should use System.Web.Mvc.SelectListItem. – Darin Dimitrov Apr 13 '12 at 17:55
It is definitely 'System.Web.Mvc.SelectListItem' that is being called and maybe the problem is with something else? I think my grabbing topics is correct 'IEnumerable<Topic> topics = from t in db.Topics select t;' I just cant seem to shake these 2 errors... – pjb5064 Apr 13 '12 at 18:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.