1.How to create student record?
2.How to create project record?
3.Assume i have another two models which has many-to-many relationships. How to create record for those two models ?
Save:
1. I experienced issue in saving records which has relationships like hasMany. Any working fix available?
Is there any tutorials/documentation explaining all these.
The Ember-Data api docs:
http://emberjs.com/api/data/
The most important ones for you I would say are store.find, store.save, and it also explains which methods rely on promises.
Also, I would say that you need to put more effort into your questions on this website. We can only help you if you provide enough information. Clear code examples, errors messages, etc…
If your using the fixture adapter, the data isn’t persisted anywhere. Every time you refresh the page the data is effectively re-initialized with the static arrays so perhaps it is working, just not as you expect.