我在静态类中有这样的函数
public static IEnumerable<MyObject> getFilteredList(int docType)
{
var fItems = from i in list
where i.DocType == docType
select i;
return fItems;
}
当我以这样的形式将这个返回的列表用于我的网格的数据源时,例如:
GridControl.DataSource = staticClass.getFilteredList(10)
GridsDataSource
属性为空。你能解释一下为什么会这样吗?
编辑:列表变量是列表,其中包含 DocType = 10 的元素。项目包含元素。