I'm interesting if it is possible to detach database context (even abstract context) from Domain model. I've tried to implement domain logic for several entities. I'm satisfied with result however I have one doubt. I don't know if it is right to have database context in Domain Logic code. By database context I mean the code which tracts getting entities from database and saving them. I'm using EF4 POCO scenario. POCO - is my domain objects. I've created IUnitOfWork contract that is implemented by EF4 database context.
I have to write following code everywhere if I need to restore entities from database.
public class CustomerService {
public void SomeCustomerProcess() {
IUnitOfWorkFactory factory = Config.GetUnitOfWorkFactory();
using (IUnitOfWork session = factory.create())
{
ICustomerRepository rep = Config.GetCustomerRep(session);
....
session.Commit();
}
}
}
Restored entities will be treated as new without context. I saw the code like this in Nillson DDD book, however it was just study samples.
getCustomerRep? Your repository implementations will need access to the context, but your entities should not depend on either the repository or the context. – qes Jan 31 '11 at 23:36