문제

Is cascading delete possible in gae ndb? If so, how to implement it?

올바른 솔루션이 없습니다

다른 팁

No there is no such thing as ndb is not a relational database and if you want to achieve the same you will have to do that on your own. There is no specific way to implement this as it depends on your actual needs. As a general tip you might want to use transactions to make sure that all the related records will be gone before deleting the parent.

I've found ndb model has the _pre_delete_hook and _post_delete_hook which could be used to treat this problem. _pre_delete_hook

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top