我正在尝试转换一组动态值,以便我可以使用 lambda 表达式来查询它们,但是在将集合转换为时我不断收到错误IEnumerable
:
(IEnumerable<MyClass>ViewBag.MyClassList)
导致错误
Using the generic type System.Collections.Generic.IEnumerable<T> requires 1 type arguments
和
MyClass is a 'type', which is not valid in the given context
这实际上是零意义的。IEnumerable
想要一个类型,但使用一个类型is not valid in the given context
。
哈普?