Suppose I have two objects:
class Apple
{
public int ID {get;set;}
public string Name {get;set;}
public string Color {get;set;}
}
class UsedApple
{
public int ID {get;set;}
public int AppleID {get;set;}
}
How can I select all used Apples?
Use Join method (same as inner join in SQL):