Specifing how store should work once querying is properly.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-04-08 12:38:09 -05:00
parent 907fffe4be
commit 6a8e7bff51
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
accessing
store
ReStore isConnected ifFalse: [ self class storeDB]. "Starting the ReStore singleton."
self tweets do: [:each | ReStore evaluateAsTransaction: [ each store ] ].
self tweets do: [:each |
ReStore evaluateAsTransaction: [
each store.
"each user isInDB? ifFalse: [ each user store ]"
]
].