lets say I want to make an app only read data from employee realmObject like
employee: {EmpNo String, EmpName String, DeptNo int, Sal int, comm int }
now I want to add about 1000 employee to realm database to use it in my app. Is there any way to do this in design / development phase ?
or I have to build another project to add these records?
note: I have the data as csv or json, the important point that I want to add these records by developer not by user, how to do this?