简体   繁体   中英

Code=134110 - Validation error missing attribute values on mandatory destination attribute

Context:

  • app using CoreData
  • some lightweight migration successfully performed in the past (reached the 4th iteration of the model version)
  • client wants a new feature
    • created a 5th model version
    • added one single lousy new property, a non-optional boolean called new_one, to the TestModel entity

The outcome:

CoreData: error: NSUnderlyingError = "Error Domain=NSCocoaErrorDomain Code=134110 \"An error occurred during persistent store migration.\" 

UserInfo={

entity= TestModel, 

attribute=new_one, 

reason=Validation error missing attribute values on mandatory destination attribute}";

}

Solution:

I don't completely grasp why this happens (I'm too tired and eager to leave this problem behind), but the "mandatory destination attribute" thing pointed me in the direction of setting the property as an optional. Whether it's the right thing to do or just an ordinary hack...I don't know...but it solved my problem, I can now move on to the next

在此处输入图片说明

You've pretty much hit the nail on the head but it sounds like maybe you don't know why. It's because:

  1. The attribute was required
  2. Which means it must have a value when changes are saved
  3. Migration saves changes, but
  4. You didn't provide any value for this attribute.

That leads directly to the error that you received.

You can fix this using any one of the following:

  • Make the attribute optional, as you did. After migration, no migrated objects have a value, but that's OK.
  • Keep it non-optional but provide a default value in the model editor. After migration, all migrated objects have the default value.
  • Set up a non-lightweight migration and provide values when migration occurs. After migration, each migrated object has whatever value you provide during migration.

I think providing a default value is better than superfluous optionality.

在此处输入图片说明

Better to use optional only when a value is indeed optional.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM