Tagged Questions

6
votes
2answers
121 views

Where to put domain logic which needs to fetch data from database

I know that domain logic should be placed into domain objects. But what if my domain logic needs data from the database ? (e.g. checking unique value, computed values.. etc ) I think injecting ...
3
votes
2answers
177 views

Service contracts vs. domain objects

Say I have two interfaces to my application: A web front-end A back-end which provides data Both of them talk to a web-service, and that web-service in turn, handles business logic and talks to a ...
3
votes
2answers
79 views

Should child entity classes have their own repositories?

I have several classes inheriting from an Admin class: Manager, Translator, etc. Admin is an aggregate, so should have its own Repository. However, some methods to find Managers or Translators might ...
3
votes
2answers
128 views

Is a “domain object” any class that represents business rules?

I came across the term "domain object" and found a couple of definitions on Google but I just want to verify that my understanding is correct. Is this simply any class that represents business rules ...
3
votes
5answers
1k views

How do you use Intefaces with the Factory Pattern in Domain-Driven Design?

Does it make sense to use interfaces for your domain object factories by default, or should interfaces be reserved for the factory classes only when you need them? public IUserFactory { User ...
2
votes
2answers
404 views

Service Layer validation vs. Domain Object validation; potential “abuse” of Domain Objects?

I've seen lots of book and article examples saying to put validation code in your Service Layer. Keep the Domain Objects "dumb" (aka, pure POCO's) and handle all validation that a Domain Object might ...
1
vote
2answers
91 views

Should I use my ORM generated objects as my domain object?

My ORM is generating objects reflecting the database table structure. This objects are extensible, so I'm able to add new properties and methods. This objects do not contains any persistence logic,so ...