私はSQLの経験があまりありません。SQLServer2008とMVC3を使用しています。次のスクリプトを使用してリストを作成しようとして、データベースに簡単なビューがあります。
List<vw_LearnerCourse> list = ctx.vw_LearnerCourses.Where(x => x.Course_ID == id).ToList().AsEnumerable();
次のエラーが発生します。
Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<vw_LearnerCourse>' to 'System.Collections.Generic.List<vw_LearnerCourse>'. An explicit conversion exists (are you missing a cast?)
よろしくお願いします。前もって感謝します。