Skip to content

Commit

Permalink
HHH-13011 : Document hibernate.use_entity_where_clause_for_collection…
Browse files Browse the repository at this point in the history
…s in the user guide
  • Loading branch information
gbadner authored and gsmet committed Oct 16, 2018
1 parent 55e430d commit 4135ddc
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -1098,6 +1098,9 @@ Setting which indicates whether or not the new JOINS over collection tables shou
`*hibernate.allow_refresh_detached_entity*` (e.g. `true` (default value when using Hibernate native bootstrapping) or `false` (default value when using JPA bootstrapping))::
Setting that allows to call `javax.persistence.EntityManager#refresh(entity)` or `Session#refresh(entity)` on a detached instance even when the `org.hibernate.Session` is obtained from a JPA `javax.persistence.EntityManager`.

`*hibernate.use_entity_where_clause_for_collections*` (e.g., `true` (default) or `false`)::
Setting controls whether an entity's "where" clause, mapped using `@Where(clause="...")` or `<entity ... where="...">, is taken into account when loading one-to-many or many-to-many collections of that type of entity.

`*hibernate.event.merge.entity_copy_observer*` (e.g. `disallow` (default value), `allow`, `log` (testing purpose only) or fully-qualified class name)::
Setting that specifies how Hibernate will respond when multiple representations of the same persistent entity ("entity copy") is detected while merging.
+
Expand Down

0 comments on commit 4135ddc

Please sign in to comment.