You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a case where I am trying to document some information about what was deleted in my application.
In the book-author example, I want to document:
Book deleted: Lord of the Rings
Author of the book that was deleted: JRR Tolkien
Now, I can do this very simply if I delete just a book in my transaction.
But if I delete the book and author in the same transaction, I am unable to figure out how to get the author's information using the properties that sqla-continuum is providing
It throws an error that the author is None - I guess because it is considering the author to be deleted at this point.
It looks like if I need to query this - I would need to redo a huge amount of the logic in RelationshipBuilder which seems like a tough task.
I have a case where I am trying to document some information about what was deleted in my application.
In the book-author example, I want to document:
Now, I can do this very simply if I delete just a book in my transaction.
But if I delete the book and author in the same transaction, I am unable to figure out how to get the author's information using the properties that sqla-continuum is providing
It throws an error that the author is None - I guess because it is considering the author to be deleted at this point.
It looks like if I need to query this - I would need to redo a huge amount of the logic in
RelationshipBuilder
which seems like a tough task.Full example:
The text was updated successfully, but these errors were encountered: