I have 2 databases. In 1 database I have saved the names in Players table. Example:
Players
Id Name
1 John
2 Jack
In other database I have table:
Club
Id PlayerId
1 1
1 2
I use data service to manipulate with those 2 databases.
I am interested how can I connect those 2 data tables to retrieve the names from Players data table like this:
Data
ClubId PlayerId PlayerName
1 1 John
1 2 Jack
Do I have to retrieve data from both sources and create new list in memory(controller) with this and than use model to show data from both in view?