独自のテーブルの他の要素を使用できる計算されたプロパティを最初に EF コードで作成することは可能ですか?
いいえの場合、コンテキストメソッドを使用せずにそれを行う最良の方法は何ですか (コンバーターを使用せずに wpf UI にバインドするプロパティが必要です)?
この例は、私がやろうとしていることを示しています (計算された SQL フィールドで静かに簡単に実行できます):
class MyEntity{
public virtual decimal Amount { get; set; }
public virtual decimal DivideOfThisAmountOnAll
{
get
{
var sum = *******.sum(e=>e.Amount); //How am i supposed to acces to the others?
return this.Amount / sum;
}
}
}