In an MVC 4 C # Web Application model, on what layer can the ADO.NET Entity Data Model file be?

2

On what layer do I put it? Model control or view?

ADO.NET Entity Data Model which connects to the database.

    
asked by anonymous 16.11.2017 / 15:41

1 answer

0

In a well-structured project, the layer responsible for accessing data is in Infra.Data.

Youcanuse DDD to create an application following a software modeling approach.

See the full example of the DDD model here .

    
04.12.2017 / 14:29