What is implicit polymorphism in hibernate?
Answer / Navneet Mishra
Implicit polymorphism in Hibernate occurs when a persistent class inherits from another persistent class and you want to load instances of the child class using a query that could potentially return instances of the parent class as well. When this happens, Hibernate will perform the appropriate type conversion automatically.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can we reattach any detached objects in Hibernate?
How many strategies are there in hibernate inheritance?
Which annotation is used to auto generate primary key?
What is one-to-one association in hibernate?
Is orm faster than sql?
What is the difference between jpa and hibernate?
What is orm and its advantages?
Which one is faster jdbc or hibernate?
Can we have multiple sessionfactory in hibernate?
Describe the method used to create an hql query and sql query?
What is named sql query in hibernate?
Is it possible to perform collection mapping with one-to-one and many-to-one?