System.Collections.Generic.IEnumerable' does not contain any definition for 'ToList'

前端 未结 5 2062
礼貌的吻别
礼貌的吻别 2020-12-05 09:21

Here is the problem. I am getting IEnumerable from ViewPage and when I tried it to convert List it is showing me error like:

\'System.Collection

5条回答
  •  离开以前
    2020-12-05 09:41

    Are you missing a using directive for System.Linq?

    http://msdn.microsoft.com/en-us/library/bb342261.aspx

提交回复
热议问题