DevIQ
Exposing Collection Properties
Exposing Collection Properties
Generally, exposing collection properties from domain Entities is an antipattern, because it leads to an anemic domain model and breaks encapsulation. Entities should be responsible for managing their own internal state, and this includes the contents of their related collections. This is especially important for aggregate roots, which must ensure consistency of the entire aggregate prior to allowing persistence of the model to occur. Some tools, including some object-relational mapping tools, have difficulty supporting private collection properties. This can impact the goal of having persistence ignorance (PI) in the domain model, but wherever possible one should try to achieve both PI and proper encapsulation of the model.
References
Exposing Private Collection Properties to Entity Framework
Edit this page on GitHub