Adding a Categorylist to all pages with MVC4
- by Sidriel
I'm new with MVC4 and just MVC.
I have a homecontroller and a categorycontroller. The categorycontroller sends data from the model to the categoryIndex view. That's works fine.
But now I want to add the categorylist on all the available controllers.
I already fixed this to add in all classes return view(db.categorys.ToList()); and add…