Creating a WebForms Application in MVC 3 + Entity Framework

I have a small application developed in ASP.NET 2.0 WebForms. For training purposes, I am going to convert this application to MVC 3 + Entity Framework. Below is the simplest example for modeling my application. Nothing unusual.

Application Layout:

(the image should read "input fields", not "files")

enter image description here

Architecture:

enter image description here

Key points:

  • Service-level methods use the ADO.NET method SqlCommand ExecuteReaderto execute stored procedures

  • Most of the logic of manipulation, etc. performed in stored procedures. There is hardly any service level data manipulation

Now I want to convert this application to MVC.

Questions:

  • (), MVC + Entity Framework?

  • ?

  • MVC3, EF, -, , , , . ?

.. . , .

1:

  • . - . .

  • SQL Server DBS.

2:

- 99% , - , . , (.. ) MVC, , , ( MVC) -.

+5
2

, , , , 2:

  • MVC WebForms.
  • EF ADO.NET.

  • MVC HTML, .. EF ( SQL Server MySQL, MySQL), LINQ .. , .
  • . , . MVC. , WebForms MVC-, . EF. , , .
  • [ ], SP, EF. SP, + SP DataSets ( ), , . , EF, .
+2

? . , EF ASP.NET MVC?

, - -. , :

  • SP EF-, , EF. EF . - , - . , , - . , SP , , , . SP EF ( ), .
  • ASP.NET Web Forms ASP.NET MVC + Razor , , . , .
  • @marcind, - .
+2

All Articles