-
Notifications
You must be signed in to change notification settings - Fork 806
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
Implement a CoreData xcdatamodel parser. #610
Implement a CoreData xcdatamodel parser. #610
Conversation
@property (readonly, copy) NSDictionary* fetchRequestTemplatesByName STUB_PROPERTY; | ||
- (NSFetchRequest*)fetchRequestTemplateForName:(NSString*)name STUB_METHOD; | ||
- (NSFetchRequest*)fetchRequestTemplateForName:(NSString*)name STUB_PROPERTY; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, this should not have changed from STUB_METHOD. #Pending
I added an in-depth single entity two-property test; one attribute and one relationship. It doesn't get into any attribute constraints, but it does make sure that a lot of the basic parseable keys are intact. |
</ProjectReference> | ||
<ProjectReference Include="..\..\Starboard\dll\Starboard.vcxproj"> | ||
<Project>{0AC27ECF-E2AB-420B-9359-4843FFF4CBFA}</Project> | ||
</ProjectReference> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need this if its using sdk-build.props. #Pending
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
f64194c
to
f72642c
Compare
In CI build. |
The intent of this pull request is to implement the basic functionality required by NSManagedObjectModel.
In lieu of precompiling the model into a binary format, CoreData will thaw it from XML at runtime.
Quick Notes