If I understand your question correctly, just because you are using MVC you do not have to use Entity framework to communicate with the database.
Inside your controller you can use whatever means you want to get the data out of the database. Then you can either transform that data into a custom object which you pass to your View, or you could potentially just pass a DataTable to your view.
Your view just has to know how to iterate through your object that you pass to it.
However, I recommend using POCO objects to pass to your view, so that you don't tightly couple your view data to the technology used to extract information from the database.