-
-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application crash on NSManagedObject model.export() #581
Comments
Could you share the model and an example of the data you're trying to export? Maybe some steps to reproduce would help a lot too. |
extension DynamicDataConfigurationField {
} class DynamicDataConfiguration: BaseEntity{
} CoreDataProperties and extension |
What was the name of your Entity? The one that crashed was it DynamicDataConfigurationField ? |
Closing for lack of follow up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I want to export the model, the application crashes.
error is ;
Thread 1: EXC_BAD_ACCESS (code=2, address=0x16d3dbfc0)
switch (inflectionType) {
case SyncPropertyMapperInflectionTypeSnakeCase:
return [NSString stringWithFormat:@"%@_", [self.entity.name hyp_snakeCase]];
break;
case SyncPropertyMapperInflectionTypeCamelCase:
return [self.entity.name hyp_camelCase];
break;
}
}
in return [NSString stringWithFormat:@"%@_", [self.entity.name hyp_snakeCase]];
The text was updated successfully, but these errors were encountered: