I have an Umbraco Cloud Project I have just started, and for the first time I want to use the ModelBinder.
When using Umbraco Cloud you have a website instead of a Web Application.
You also have a .Core Project where you have a controllers folder. How do I access the generated strongly typed classes in my controllers in my .Core project when the classes are generated in the Website project?
Also, in the past before I started using the model binder, I would always make custom view models, do logic in my controller then pass that custom view model to my view.
When using the Model Binder, assuming I can get the strong types classes in my controller, should I still be making a custom view model class now I have a strong typed object can I just pass that straight in to the view... I'm a little confused about the correct approach, my gut is telling me I should still using a custom view model.