我有三個類是這樣的:訪問使用另一個對象的對象實體框架
public class Cancellations
{
public int ID {get; set;}
public string CustomerID {get; set;}
public string CustomerName {get; set;}
}
public class Service
{
public int ID {get; set;}
public string CustomerID2 {get; set;}
public string ServiceName {get; set;}
}
public class Bill
{
public int ID {get; set;}
public string CustomerID3 {get; set;}
public string City {get; set;}
}
沒有在這些數據庫這樣的關係:Service.ID=Cancellations.CustomerID
和Bill.CustomerID3 = Service.CustomerID2
。 我想要實現的是,如何在Cancellations對象中有CustomerID時獲得正確的城市。你能給我提示嗎?謝謝。
你有沒有嘗試過什麼?......看看'Join',然後寫linq查詢。此外,我建議看導航屬性 - 所以你將有一個更簡單的生活加入 –
@GiladGreen這些配置沒有導航屬性。我覺得我應該使用連接,但我無法弄清楚如何。謝謝。 – jason
然後請顯示你已經嘗試過的東西..你是4年的成員......你知道它是如何工作:) –