drewmccormack / ensembles

A synchronization framework for Core Data.
MIT License
1.63k stars 132 forks source link

Does transient properties get sync with ensemble? #225

Closed sarunw closed 7 years ago

sarunw commented 8 years ago

I have transient property on my model, but it doesn't seem to sync this is by design? Can I do anything to make this sync?

drewmccormack commented 8 years ago

If it is transient, it won't sync. That would make no sense. It is never stored in the store, so never synced to another store.

You should make it non transient if it needs to sync. Transients are for in memory variables only used on one device, and discarded on quit.

Kind regards, Drew

On 09 Apr 2016, at 09:30, Sarun Wongpatcharapakorn notifications@github.com wrote:

I have transient property on my model, but it doesn't seem to sync this is by design? Can I do anything to make this sync?

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub