I am writing a small application in WPF. This allows me to save and read data from db. It has 3 levels (business logic, presentation level and data access). I use a basic approach, and the Entity Framework created a model for me.
My question is, where should I store my .edmx generated model?
If I put it in Data Access, I will need to write some duplicate code in my business logic, and if I put this model in Business Logic, then what should I store in the data access level?
source share