My team tries very hard to stick to Domain Driven Design as an architectural strategy. But, most of the time, our domain entities are pretty enimic. We'd like to be putting more business/domain behavior on our domain entities.
For example, Active Record puts data access on the entity. We don't want that because we happily use the repository pattern for data access.
Also, we design our software to be SOLID (the five software design principles that Uncle Bob put together). So, it's important to us that we pay attention to single responsibility, open-closed, liskov, interface segregation, and dependency inversion while designing our entities.
So, what kinds of behavior should we include? What kinds should we stay away from?