Native app using associations

0
Hi,  My app’s domain model is set up like this Account *-* Service 1-* Supported People The non native app shows the User account a list of the supported people who are linked to the same service(s) that their account is. How do I achieve this on a native app when you can’t use reference sets?  
asked
1 answers
1

N-n associations are not yet supported with native or offline hybrid apps. The general approach is to introduce an entity in between so that you get a 1-n and n-1 association.

answered