I am doing my first ASP.NET MVC 3 project here, and since I need to support stored procedures, I decided to use Entity Framework 4.1 with a database approach, for example. with all the goodness of EDMX.
Since I absolutely need support for the stored procedure, I cannot use the code in the first place (as much as I would like).
All of the cool new MVC building materials seem to be based on the first code (which I can't use - see above) - or is there a method / parameter that affects it, so that it will use an ObjectContext instead of of DbContext ??.
So, how do I create the Quickie part of my MVC 3 application to tint some lookup tables - using the first approach to the EF 4.1 database? Can I use dynamic data? How to add this to an existing MVC 3 (.NET 4) project? It doesn't seem to find the βadd new itemβ entry for dynamic data ..... and all the practical videos that I find are for MVC 1 or 2 and .NET 3.5 - are they still applied?
source share