Linq to Entity クエリに問題があります。次のようなリストを返そうとしています:
List<InvoiceReportItem> cancelResults = (List<InvoiceReportItem>)(from cr in model.InvoiceReportItems
//join l in model.tblLicences on cr.LicenceAuto equals l.LicenceAuto
where cr.Report.Id == id
select cr);
しかし、それは私にエラーを与えています:
タイプ >'System.Data.Objects.ObjectQuery
1[LicExpiryNotModel_EF41.Model.InvoiceReportItem]' to > type 'System.Collections.Generic.List
1[LicExpiryNotModel_EF41.Model.InvoiceReportItem]' のオブジェクトをキャストできません。
なぜこのエラーが発生するのか、誰にも分かりますか? 私を夢中にさせる!:(
前もってありがとうニール