In my opinion, agile methods encourage us to keep simple and lean rather than adding complexity and complexity before we need it. However, the speed and volume of technological change encourages th
Tag: DDD
Domain Drive Design – DDD – Entity Should have an equal comparator
Eric Evans said in a plural sight video: “I have begun to believe that an entity should not even be compared for equality”.
Does this mean entities? There is no need to have the required Id f
Verification method in OOP – DDD
I have a question about the verification method in ddd. I have read quite controversial opinions. Some people say this should be physical life, some people say it should be placed in the entity. I
Domain Drive Design – DDD and entity libraries, models using multiple identity types
I have a model that looks like this:
public interface IEntity
{
int Id {get; set; }
} Then my idea is to let my entity inherit from this interface:
public class User: IEntity
{
public