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
typeEvent<'State>={
ID :string
State :'State
CreatedTime :DateTime}
And after I pickler.PickleToString then I store to database. I have another service load event data from database and do aggregation. But the problem is, I dont know what will be the exactly type of the State (and I dont use it in this case also). Is there any way just ignore the type?
I tried pickler.UnPickleOfString<Event<obj>> not working.
Thanks
The text was updated successfully, but these errors were encountered:
Let me first say that using this library for storing data is not recommended. You can achieve what you need be serializing and deserializing using obj as your type parameter, however this will only work provided you have also serialized using obj.
Lets say, I have a type
And after I
pickler.PickleToString
then I store to database. I have another service load event data from database and do aggregation. But the problem is, I dont know what will be the exactly type of theState
(and I dont use it in this case also). Is there any way just ignore the type?I tried
pickler.UnPickleOfString<Event<obj>>
not working.Thanks
The text was updated successfully, but these errors were encountered: