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