0
另一個列表鍵選擇假設我有兩個對象:通過從LINQ
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;}
}
我如何可以選擇所有使用蘋果?
好的,謝謝。 –