質問

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