I have two classes on Parse.com : Image & Data. In Data class, I am saving 3 fields Name,Mobile-number & Occupation. In Image class I\'m saving images.
I hav
I can't exactly tell you the code, but from database perspective, its not a good idea to have tables with many to many relationship. In order to resolve many <-> many relationships, you must break them as below:
one -> many <- one
For more info, read this: http://qisql.com/qisql_sqlite_many2many.html