私はこのようなものを持っています:
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;}
}
さて、モデル オブジェクトには と の 2 つの項目がmodel.c
ありmodel.Count
ます。model.Count
にマップするにはどうすればよいmodel.c.ThreadCount
ですか?