我有这样的事情:
var model = forumsDb.Categories
.Select(c => new {c, c.Threads.Count})
.ToList()
我的 Category 对象如下所示(伪代码):
public class Category
{
public int id {get;set;}
public ICollection<Thread> Threads { get; set; }
/***some properties***/
[NotMapped]
public int ThreadCount {get;set;}
}
现在,在我的模型对象中,我有两个项目:model.c
和model.Count
. 我怎样才能映射model.Count
到model.c.ThreadCount
?