I got a List of Team objects, and one of the properties of a Team is a List of Player objects.
I want to grab a player with a specific ID from a team with a specific ID, for example:
Get the player with ID (player.id) 123 from the Team with ID 987 (team.id)
How can I do this using LINQ?
Many thanks in advance, Bob
Wheremethod - what exactly is the problem?