I am currently learning ASP.NET MVC so please excuse my question if it has been asked or seems rather simple, but if I could get some help I would greatly appreciate it.
I am trying to return two different repositories to the View. I am going through ASP.NET MVC’s tutorials and I thought I would try taking it a step further. I can display Movies from the Movie table in the database just fine but I also want to display data from the Actors table on the same as well and I am not sure how to go about doing this. For displaying the Movies I was following the Repository pattern.
I hope this makes sense.
Thanks,
Create a new class that has both a list of Movies and Actors in it:
Then, in your controller action, instantiate an object of type MoviesAndActorsModel that is populated from your repository:
Now make sure your view inherits from ViewPage
<MoviesAndActorsModel>and you should be able to access both the movies and actors like so: