I would like to use EFf 4 as my ORM in my DDD project. I am going to create my model based on my classes. Should I create classes that are mostly dto objects for my business objects for the consumer, or should I implement actall BO classes in my EF model?
I think that the EF model should be business objects, otherwise you will have only one layer of abstraction, which you will need to write for the plumbing code.