Best practices for serialization of DDD aggregates
According to DDD domain logic should not be polluted with technical concerns like serialization, object-relational mapping, etc.
How to model and store an entity which has “one or more” values
I’ll use C# to design the model to be persisted
Solutions To Partial ORM Retrieval
I have read the following question regarding whether it is best to use objects with fully or partially populated data members. The 3 suggestions were:
Solutions To Partial ORM Retrieval
I have read the following question regarding whether it is best to use objects with fully or partially populated data members. The 3 suggestions were:
What TDD/BDD tests should be writen to test an ORM
So I’m writing an ORM for NodeJS and using Mocha + Chai to test it.
Limiting complexity in JPA programs Java/Hibernate
I’ve been working on a new application for some months now. It’s my first big JPA program, and is still in the early stages. However, the complexity of my JPA object tree is becoming a growing problem.
Limiting complexity in JPA programs Java/Hibernate
I’ve been working on a new application for some months now. It’s my first big JPA program, and is still in the early stages. However, the complexity of my JPA object tree is becoming a growing problem.
Limiting complexity in JPA programs Java/Hibernate
I’ve been working on a new application for some months now. It’s my first big JPA program, and is still in the early stages. However, the complexity of my JPA object tree is becoming a growing problem.
Limiting complexity in JPA programs Java/Hibernate
I’ve been working on a new application for some months now. It’s my first big JPA program, and is still in the early stages. However, the complexity of my JPA object tree is becoming a growing problem.
Class Table Inheritance: do child tables need a primary key?
I’m using the Class Table Inheritance architecture with my application and have read Fowler. When mapping my database tables to classes in code, I’ve realized I have no need for an “ID” property on my derived classes, and, in fact, it can cause issues if it has the same name because it hides the base class property.