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
Hi @kamilk91, if I simplify your sample it just works. See the example below. Also, all tests seem to prove the same.
// Store itvarkey="data";store.Store<SingleUserData>(key,newSingleUserData{answers=newList<SingleUserAnswer>(),id=42});// Fetch itvartarget=store.Get<SingleUserData>(key);// Prove itConsole.WriteLine(target.id);// Prints: 42
Can it be that you're expecting it to be stored every time you run the program? In that case, you have to call the .Persist() operation before the routine closes.
Hello
Even if i added manualy "key" and "value" your library can't see it. The same situation is when i try to save something (simply boolean) in storage.
The text was updated successfully, but these errors were encountered: