-
Notifications
You must be signed in to change notification settings - Fork 1
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
Improve Model class #8
Comments
|
The following should simply forward to the
|
Here are the headers so far: - (instancetype) createRecord:(NSDictionary *)properties;
- (PMKPromise *) findById:(SLNid)nid;
- (PMKPromise *) findQuery:(NSDictionary *)query;
- (PMKPromise *) findAll;
- (PMKPromise *) findMany:(NSArray *)ids;
- (instancetype) updateRecord:(NSDictionary *)properties;
- (instancetype) deleteRecord; |
Inspecting Core Data attributes: http://oleb.net/blog/2011/05/inspecting-core-data-attributes/ |
Ideally use something like https://github.com/adamelliot/Inflections to generate the result for the |
|
Rename
Node
toModel
See http://emberjs.com/api/data/classes/DS.Model.html
The text was updated successfully, but these errors were encountered: