Should a domain object beeing allowed to delegate to a repository?

What kind of components should a domain object beeing allowed to use?

link|improve this question

If done correctly, a repository is a domain object. In this case, a repository's single responsibility is to record the "state" of your domain objects (think CRUD operations) – ErOx Nov 8 '11 at 20:05
Since when a repository is a domain object? Isn't a repository a database access component? – Rookian Nov 8 '11 at 20:11
Quoted from: debasishg.blogspot.com/2007/02/domain-driven-design-inject.html... 1) The DAO is at a lower level of abstraction than the Repository and can contain plumbing codes to pull out data from the database. We have one DAO per database table, but one repository per domain type or aggregate. 2) The contracts provided by the Repository are purely "domain centric" and speak the same domain language. – ErOx Nov 8 '11 at 21:00
feedback

closed as not a real question by Bill the Lizard Nov 8 '11 at 22:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.