MVC中怎么构建类型IEnumerable<T>的模型项
1个回答
展开全部
接触MVC不久,在项目中遇到了下面的问题:
有一张表Customers,我现在只想取出其中的一个字段ContactName在List页面展示出来,代码如下。
C# code
public ActionResult Index(){var q = from c in ltdb.Customers select c.ContactName;
return View(q);}
但是代码执行过程中会报错,错误如下。
传入字典的模型项的类型为“System.Data.Linq.DataQuery'1[System.String]”,但此字典需要类型“System.Collections.Generic.IEnumerable'1[MvcApplication3.Models.Customers]”的模型项。
现在是不是需要将“from c in ltdb.Customers select c.ContactName”的结果转换成为“IEnumerable<T”类型返回呢,
麻烦高手帮忙指点一下,不胜感激。
------解决方案--------------------------------------------------------
------解决方案--------------------------------------------------------
我没用过Linq,但是我觉得报的这个错误的原因是你定义的是IEnumerable<MvcApplication3.Models.Customers和你赋值的是IEnumerable<string是不对的。
有一张表Customers,我现在只想取出其中的一个字段ContactName在List页面展示出来,代码如下。
C# code
public ActionResult Index(){var q = from c in ltdb.Customers select c.ContactName;
return View(q);}
但是代码执行过程中会报错,错误如下。
传入字典的模型项的类型为“System.Data.Linq.DataQuery'1[System.String]”,但此字典需要类型“System.Collections.Generic.IEnumerable'1[MvcApplication3.Models.Customers]”的模型项。
现在是不是需要将“from c in ltdb.Customers select c.ContactName”的结果转换成为“IEnumerable<T”类型返回呢,
麻烦高手帮忙指点一下,不胜感激。
------解决方案--------------------------------------------------------
------解决方案--------------------------------------------------------
我没用过Linq,但是我觉得报的这个错误的原因是你定义的是IEnumerable<MvcApplication3.Models.Customers和你赋值的是IEnumerable<string是不对的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询