Relative Content

Tag Archive for orm

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:

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.