Hello guys, am having a challenge in implementing room database relationships using Embedded annotation. Here is my case.
I have three tables, a client table, a driver table and a request table. My relationship is such a one to many relationship such that one client can have many requests and one driver can have many requests.I have included the client Id and the Driver Id in my request table. My intention is to query a request and be able to get the client information such as name and the driver information associated with that request as well.Thankks in advance