Retrieve dB results from Dynamic list
My app gets API response from facebook that returns all friends of current logged in user. The responses are displayed in a list.
Example response:
id123 name1
id234 name2
id345 name3
Is there a way to add to the response the users(friends) entires that also are in the tiggzi dataabse?
Tiggzi db
id123 db_Entry1
id123 db_Entry2
id234 db_Entry1
id345 db_Entry1
End result to display
id123 name1 db_Entry1
id123 name1 db_Entry2
id234 name2 db_Entry1
id345 name3 db_Entry1
As in above example each friend in list may have more that one corresponding record in tiggzi db. I want all such recods to display.
Thanks!