に別のオブジェクトを使用してオブジェクトへのアクセス私はこのような3つのクラスがありますEntity Frameworkの
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
。 私が達成しようとしているのは、CustomerIDがCancellationsオブジェクトにあるときに、正しい都市を取得する方法です。それについてのヒントを教えてもらえますか?ありがとう。
見上げてほとんど意味を作る感じ試したことがありますか?... 'Join'sを見て、linqクエリを書いてください。また、ナビゲーションプロパティを調べることをお勧めします。したがって、ジョインで簡単に生活できます。 –
@GiladGreenこれらの設定ではナビゲーションプロパティはありません。私は結合を使うべきであると感じましたが、どうやって結合するのか分かりませんでした。ありがとう。 – jason
あなたが試したことを示してください。あなたは4年間のメンバーです...あなたはそれがどのように動作するかを知っています:) –