最初にEF4.1コードを使用していますが、
熱心に読み込まれた子コレクションを含むコレクションを返すクエリを作成しようとしています。どちらも位置 とIsActive == trueで並べ替える必要があります
これらのクラスはマップされます。
public class Type
{
public int Id { get; set; }
public int AreaId { get; set; }
public bool IsActive { get; set; }
public int Position { get; set; }
.......
public virtual IList<Category> Categories { get; set; }
}
public class Category
{
public int Id { get; set; }
public int TypeId { get; set; }
public bool IsActive { get; set; }
public int Position { get; set; }
.......
public virtual Type Type { get; set; }
}
DTO:
public class TypeDTO
{
public string Name { get; set; }
public string UniqueName { get; set; }
public virtual IList<CategoryDTO> Categories { get; set; }
}
public class CategoryDTO
{
public string Name { get; set; }
public string UniqueName { get; set; }
public virtual TypeDTO Type { get; set; }
}
私が持っているもの:
DTO の場合:
var result = _db.Types
.Where(x => x.IsActive == true)
.Where(x => x.AreaId== areaId)
.Select(x => new TypeDTO()
{
Name = x.Name,
UniqueName = x.UniqueName,
Categories = x.Categories.Where(c => c.IsActive == true)
.OrderBy(c => c.Position)
.Select(c => new CategoryDTO()
{
Name = c.Name,
UniqueName = c.UniqueName
})
.ToList()
})
.ToList();
これはスローします:
LINQ to Entities はメソッド 'System.Collections.Generic.List
1[...CategoryDTO] ToList[...CategoryDTO](System.Collections.Generic.IEnumerable
1[...CategoryDTO])' メソッドを認識せず、このメソッドはストア式に変換できません。
DTO なし:
var result2 = _db.Categories
.Where(x => x.IsActive == true)
.OrderBy(x => x.Position)
.Select(x => x.Type)
.Distinct()
.Where(x => x.IsActive == true && x.AreaId== areaId)
.OrderBy(x => x.Position)
.ToList();
エラーなしで実行されますが、正しい結果が得られず、子コレクションが順序付けられません
その他の失敗したアプローチ:
var result = _db.Types
.Where(t => t.IsActive == true)
.Where(t => t.SiteId == siteId)
.Include(t => t.Categories
.Where(c=>c.IsActive == true)
.OrderBy(c=>c.Position))
.OrderBy(t => t.Position)
.ToList();
私は何が欠けていますか?
ありがとう。
編集 最終的な解決策:
public class TypeDTO
{
public Type Type { get; set; }
public IEnumerable<Category> Categories { get; set; }
}
var result = _db.Types
.Where(x => x.IsActive == true)
.Where(x => x.AreaId== areaId)
.OrderBy(x=>x.Position)
.Select(x => new TypeDTO()
{
Type = x,
Categories = x.Categories.Where(c => c.IsActive == true).OrderBy(c => c.Position)
})
.ToList();