0

我正在尝试动态绑定树视图。

我在谷歌中搜索并找到了一些很好的链接。

当我尝试在我的系统中运行时,它显示的错误是这样的

'System.Collections.Generic.List<ActualEstimatation.frmEstimate.ItemInfo>' does not contain a definition for 'Where' and no extension method 'Where' accepting a first argument of type 'System.Collections.Generic.List<ActualEstimatation.frmEstimate.ItemInfo>' could be found (are you missing a using directive or an assembly reference?)

这些链接是 如何动态填充树视图(C#)

和 sga101 的解决方案 如何在有效编码中将数据插入 Winform TreeView(C#)?

我在谷歌搜索以解决上述问题,但没有找到任何解决方案。

请帮我解决这个问题。

提前致谢

4

1 回答 1

0

我需要查看更多您的代码,但我相信您缺少的是 LINQ 语句。 在这里您可以阅读它并开始了解如何在您的应用程序中实现。

例如:

using (ServiceContext svcContext = new ServiceContext(_serviceProxy))
{
   var query_where1 = from a in svcContext.AccountSet
                where a.Name.Contains("Contoso")
                select a;
   foreach (var a in query_where1)
   {
    System.Console.WriteLine(a.Name + " " + a.Address1_City);
   }
}
于 2013-07-02T13:22:51.610 回答