0
what is the meaning of cascading?
2 ответов
+ 1
It is used in database api, e.g. JPA, hibernate.
Definition:
cascade: After one operation (save, update and delete) is done, it decide whether it need to call other operations (save, update and delete) on another entities which has relationship with each other.
0
thanks