Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C#

how to set a ViewModel that contains all my models in Controller?

https://github.com/PequeCeci/Guava.git here is my project, I made a model for making the slider dynamic but I already had another model so I don't know how to use both models in a ViewModel that contains both models. this is the Model that contains the other Models '''C# namespace MyFirstWebsite.Models { public class Modelo { public List<Receta> modeloReceta { get; set; } public List<Slide> modeloSlide { get; set; } } } '''