In ASP.NET MVC, how does the controller pass information between the model and the view?
Let's say I have a list of baseball players in my database. After I query those players using LINQ in the controller, how do I then pass this information on to view (my list of baseball players and their stats)?
And after I pass them onto the view, how do I use the inline code in the views html to loop through and display it?