I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer.
I don\'t want to the business layer to h
Another way to do this is to use mapper classes, use what EF purely as data access and use the classes EF generated only within the DAL, then map these DAL objects to your BLL's objects through mappers. It works fine for us.