ページのコントローラーの Index メソッドで使用する必要がある Linq クエリがありますが、コードの "select new" 部分で次のエラーが発生します。
エラー
Cannot implicitly convert type 'System.Linq.IQueryable<AnonymousType#1>' to 'string'
アクション方法
public ActionResult Index(string query)
{
var agentProductTraining = "";
if (String.IsNullOrEmpty(query))
{
BlankIndex();
}
else
{
agentProductTraining = from course in db.Course
where
course.CourseDescription.Contains(query)
select new
{
course.CourseCode,
course.CourseDescription,
course.Partner,
course.Status,
course.LastChangeDate,
course.LastChangeOperator
};
}
return View(agentProductTraining.ToList());
}