I have a fairly simple SQL statement that I'd like to use as a model on a new .cshtml page.  I'm using the forum to store information for a page of recipes on my site.  How can I convert the below SQL statement to a model in nopcommerce?

SQL = "SELECT Subject, Text, Forums_Topic.Id FROM Forums_Topic JOIN Forums_Post ON Forums_Topic.Id = TopicId WHERE ForumId = 4 AND (Forums_Topic.CustomerId = 1 OR Forums_Topic.CustomerId = 1682) ORDER BY TopicTypeId DESC"

I currently have the recipe page running on the client side, and the data comes from a custom json handler I wrote using the above SQL statement.  But I want to re-write the page on the server side so that each recipe can have it's own URL for people to share.  The working page is at http://www.anarchyacres.com/recipes

I'm an MVC newbie, and no matter how many times I read about MVC, it's not making sense yet!  Thank you very much for considering my beginner question.  :)