実行しているLinq to Entity
場合は、クエリのクロージャでClassType
with new
を使用できませんselect
only anonymous types are allowed (new without type)
私のプロジェクトのこのスニペットを見てください
//...
var dbQuery = context.Set<Letter>()
.Include(letter => letter.LetterStatus)
.Select(l => new {Title =l.Title,ID = l.ID, LastModificationDate = l.LastModificationDate, DateCreated = l.DateCreated,LetterStatus = new {ID = l.LetterStatusID.Value,NameInArabic = l.LetterStatus.NameInArabic,NameInEnglish = l.LetterStatus.NameInEnglish} })
^^ without type__________________________________________________________________________________________________________^^ without type
あなたがこのエラーが発生new keyword
するcomplex properties
場合でも、Select Selectクロージャーを追加した
その上のキーワードのクエリは,,remove
ClassTypes from new
Linq to Entity
sqlステートメントに変換され、SqlServerで実行されるため
そのとき、私は使用することができますnew with types
上select
の閉鎖?
あなたが扱っているならあなたはそれを使うことができます LINQ to Object (in memory collection)
//opecations in tempList , LINQ to Entities; so we can not use class types in select only anonymous types are allowed
var tempList = dbQuery.Skip(10).Take(10).ToList();// this is list of <anonymous type> so we have to convert it so list of <letter>
//opecations in list , LINQ to Object; so we can use class types in select
list = tempList.Select(l => new Letter{ Title = l.Title, ID = l.ID, LastModificationDate = l.LastModificationDate, DateCreated = l.DateCreated, LetterStatus = new LetterStatus{ ID = l.LetterStatus.ID, NameInArabic = l.LetterStatus.NameInArabic, NameInEnglish = l.LetterStatus.NameInEnglish } }).ToList();
^^^^^^ with type
ToList
クエリで実行した後、selectでin memory collection
使用できるようになりましたnew ClassTypes