Short: don't.
Longer: It depends on the internal implementation of the PrivateConcurrencyType version of NSManagedObjectContext
. I presume, if you'll only use it from one thread and won't pass objects from that context to any other thread, it might work. Or not. But
- It's not guaranteed;
- If you're only going to use it from one thread, you need the
Confinement concurrency type. Actually, I wouldn't probably use confinement at all just in case I'll need some concurrency later, but we're being theoretical here, right?
- Even if it works now, it might break in the future.
If you want to use this context from different threads, something will break for sure. Some data might disappear or reappear randomly (happened to me once), something might crash, and unicorns might take your office by storm. So just don't