vote up 0 vote down star
1

The typical way to pass an object to a view is to pass its type through the viewpage object. Unfortunately, this only allows you to send one object to the view. E.g.:

public partial class Index : ViewPage<Person>
{
}

But what if you need to display other information in the view that's not relevant to the Person object? Do you typically create "view objects" that would extend the Person object and add the additional properties you need to display on the page?


Duplicate: http://stackoverflow.com/questions/238430/how-do-i-pass-multiple-objects-to-viewpage-in-aspnet-mvc

flag

75% accept rate

closed as exact duplicate by Will Oct 30 '08 at 18:35

2 Answers

vote up 1 vote down

There's a concept called a ViewModel. It contains all of the information needed by that view, and typically wraps the actual model objects.

So, you'd probably do something like this:

public partial class Index : ViewPage<IndexViewModel> { ... }

public class IndexViewModel
{
    Person Person { get; set; }
    Foo Foo { get; set; }
    Bar Bar { get; set; }
}
link|flag
Interesting, I will have to check that out. – Korbin Oct 30 '08 at 19:22
vote up 0 vote down

I haven't used ViewPage just yet, but are there no ViewPage<T,K,>, etc.? Just one ViewPage<T>?

In the latter case you'd have to come up with a context that bound your items together. I use this sort of approach often, and have taken to using it with function parameters as well (when I have a series of functions which operate on the same variables):

public class CustomerContext
{
    public Person { get; set; }
    public Invoice { get; set; }
}

Though I'm not sure the MVC framework supports properties of properties syntax (data.Person.Name).

link|flag
Yep, there is only one: ViewPage<T>. Your suggestion is exactly what I'm currently doing. I was hoping for a more efficient solution instead of creating whole classes different than my "model" classes. – Korbin Oct 30 '08 at 19:21

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