ASP.net MVC 2 Entity Framework Multi-Table Tutorial

I am new to ASP.net and MVC 2, and have understood the basic concepts of how views, routes, and controllers are implemented in it. I have big problems with MVC 2 "Models", although due to the fact that I always avoided ORM.

Please point me to some good ASP.net MVC web application tutorials that use the ADO.net Entity Framework with many tables. In particular, I want to better understand the structure of the repository and how to insert / update data in the corresponding several tables. (The NerdDinner tutorial was unsatisfactory).

(PS: I prefer textbooks in C #, but VB is also okay).

+4
source share
2 answers

This is not a question about MVC, but about ORM in general. Check out β€œLINQ in action” from Manning Publications to learn more about LINQ or read elsewhere about nHibernate.

A simple tutorial just won't do, because the topic is too big. Even the middle book did not contain all its features (but MSDN and this forum remained)

0
source

Source: https://habr.com/ru/post/1315134/


All Articles