我从 EF 开始,当我想在 linq-to-entities 查询中进行投影时遇到这个问题
原始实体
public class RealClass {
public int Id {get; set;}
public string Description {get; set;}
public decimal ValueOne {get; set;}
public decimal ValueTwo {get; set;}
// Other 100 properties..
public decimal TotalValue {
get
{
return this.ValueOne + this.ValueTwo; // It's an example, in my real object it is a little more complex and involves more properties
}
}
}
另外,我有这样的事情:
public class LittleClass {
public int LittleId {get; set;}
public string LittleDescription {get; set;}
public decimal LittleTotalValue {get; set;}
}
而且,在我的存储库中,我想做这样的事情:
public IList<LittleClass> GetAllLittleClass {
return myContext.Set<RealClass>().AsNotracking().Select(x => new LittleClass
{
LittleId = x.Id,
LittleDescription = x.Description ,
LittleTotalValue = x.TotalValue // Here is the error!
}).ToList();
}
我收到以下错误
LINQ to Entities 不支持指定的类型成员“TotalValue”。仅支持初始化器、实体成员和实体导航属性
现在的问题是:
有什么方法可以使用 RealClass 中的 TotalValue 属性,而我没有获得所有 RealClass 属性然后进行投影?(这不好,因为该实体很大,我只需要在网格中显示 3 列)。
谢谢!
PS:对不起我的英语!