in ORM like Hibernate , we can easily retrieve any existing record using get() or load() with using PRYMARY KEY present in database.
But when to use get() and when to use load() ?
what is the main difference between get() and load()?
to find the answ...