Hello. I'm developing an application with ionic 2 and I have the following situation.
I have 2 tables, 'stores' and 'publications'.
My question is, how do you go to the 'store' listing to open each publication, according to the name of each one that appears in the listing.
Publication table: [ { "description", "date", id "PublicationId" } ]
Stores table: [ { "name", "id" } ]
In the API, the 'PublicationId' field of the PUBLICATIONS table is getting the same value as the 'Name' field of the LOJAS table.
If you have an example with this situation with database it will be useful.
Thank you in advance.