I've only been working with Asp.Net MVC 3 for a few months now so fairly new to the MVC pattern. Have worked with .net and C# for years.
I am confused as the best way to go about creating the models needed for my situation. I am creating a news posting site and am working on the actual post data itself. I have a NPost table in the database that has the post's data like Title, Body, UserId, CreationDate, etc. I am also using the build in Forms Authentication with the tables auto generated for it as well as use with the profile properties for data such as name, and avatar picture.
You should also know I am using EntityFramework and Reverse Engineer Code First to generate the models I have been using so far.
My Question: How do I connect the post with the author?
Before I would have just joined the tables on the UserId in a stored proc and connected it with a control using a data source, but I am confused as the best way to do it in MVC.
Thanks for any and all help you can give me!