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
Currently the tracked properties in the InMemoryBackingStore get reset when serializing an object. For my purposes I want to create a report of the objects that are going to be sent to the graph api before actually sending them. At the moment this is not easily possible, because I can only serialize them once.
This is a short example of the problem I want to avoid
Is there a way to avoid this behaviour?
The only workaround I know is to disable (which is not an option for me) or replace the BackingStore implementation. I'm okay with writing an own implementation of the BackingStore but it feels kind of dirty since I basically need to copy past the InMemoryBackingStore. I'm also not sure if I'm going to run into other troubles down the line if I do this.
The text was updated successfully, but these errors were encountered:
Currently the tracked properties in the
InMemoryBackingStore
get reset when serializing an object. For my purposes I want to create a report of the objects that are going to be sent to the graph api before actually sending them. At the moment this is not easily possible, because I can only serialize them once.This is a short example of the problem I want to avoid
Is there a way to avoid this behaviour?
The only workaround I know is to disable (which is not an option for me) or replace the
BackingStore
implementation. I'm okay with writing an own implementation of theBackingStore
but it feels kind of dirty since I basically need to copy past theInMemoryBackingStore
. I'm also not sure if I'm going to run into other troubles down the line if I do this.The text was updated successfully, but these errors were encountered: