-2
我正在使用mvc4.0,enityframework 4.2.1,c#,生成.EDMX文件後我試圖通過以下代碼將上下文對象轉換爲IEnumerable將IEnumerable轉換爲System.Data.Objects.ObjectSet時出現錯誤
IEnumerable<TransactionsModel> pro = (IEnumerable<TransactionsModel>) x.ToList();
,但我收到以下錯誤
Unable to cast object of type 'System.Data.Objects.ObjectSet`1[MCLInventory.Models.Projects]'
to type 'System.Collections.Generic.IList`1[System.String]'.
感謝 巴努•普拉卡什Inturi