是否可以首先在 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;
}
}
}