C # 4 n-tier textbook search: stored procedures, Entity Framework, pocos, business logic, user interface

I was commissioned to research the n-level architecture / design for the new winforms C # .NET project (to create a small application to prototype the proposed approach).

We have many stored processes that we want to save.

We want to learn ORM and Entity Framework.

We want to keep business objects (pocos) separate from business logic.

We want the user interface to be separate.

Any good online guides that include all of these elements? Thank!


UPDATE: perhaps a textbook of the same size is too ambitious for everyone. What about an Entity Framework tutorial that covers preserving business objects (pocos) separately from business logic classes?

+3
source share
1 answer

The Data Developer Center has a large collection of documents and tutorials that can help.

Data Developer Center: http://msdn.microsoft.com/en-us/data/ee712908.aspx

@DDC technical articles: http://msdn.microsoft.com/en-us/data/aa937699.aspx

+1
source

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


All Articles