2つのオブジェクトがあるとします。
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;}
}
使用済みのすべてのリンゴを選択するにはどうすればよいですか?