in Hibernate by

What is Light Object Mapping?

1 Answer

0 votes
by

Light Object Mapping is one of the more valuable levels of ORM quality. This approach uses specific design patterns to hide the syntax from business logic. All entities are represented as classes and mapped manually. The Light Object Mapping approach works well with applications that have fewer entities and applications that use metadata-driven data models.

...