Closed ilyannn closed 9 years ago
Hey, I don't think there can be any harm if outside classes had access to propertyName.
I need to use it in the following situation: extract the external primary key from the mapping dictionary, given that we know internal primary key. That is:
[mapping enumerateKeysAndObjectsUsingBlock:^(id key, KZPropertyDescriptor *description, BOOL *stop) { if ([description isKindOfClass:[KZPropertyDescriptor class]] && [description.propertyName isEqualToString:modelPrimaryKey]) { externalPrimaryKey = key; *stop = YES; } }];
Do you mind merging it?
Thanks fot great work!
Hey, I don't think there can be any harm if outside classes had access to propertyName.
I need to use it in the following situation: extract the external primary key from the mapping dictionary, given that we know internal primary key. That is:
Do you mind merging it?
Thanks fot great work!