これらの2つの不滅のテーブルを持つデータセットがあるとします: Employee & Order
Emp -> ID, Name
Ord -> Something, Anotherthing, EmpID
そして関係Rel : Ord (EmpID) -> Emp (ID)
標準のマスター/詳細シナリオ
(従業員の表示、関係の追跡、関連する注文の表示) では
うまく機能しますが、反対の方法 (Emp.Name で Ord テーブルを表示) をしたくない場合はどうすればよいでしょうか?
このようなもの:
<stackpanel> // with datacontext set from code to dataset.tables["ord"]
<TextBox Text="{Binding Something}"/>
<TextBox Text="{Binding Anotherthing}"/>
<TextBox Text="{Binding ???}"/> // that's my problem, how to show related Emp.Name
</stackpanel>
何か案は?値コンバーターを作成できますが、親モジュールから取得したデータセット インスタンスを使用したくない場合は注意が必要です。