In this talk, first presented at QCon London 2009, Eric Evans describes what he'd learned about DDD since the book was published. The talk was recorded at the May meeting of DDD-NYC SIG. Domain Layer
class Member
string UserName
interface IMemberRepository
Let's say you want functionality to check if a UserName is in the database already. This logic would have to use a concrete implementation of the IMemberRepository, eg MemberRepositoryNHibernate.
My question is, where and how should this logic be implemented?
The Web Layer?