在 BindingList中搜索与林克

发布于 2024-10-16 17:28:03 字数 482 浏览 1 评论 0原文

为什么会出现这个警告?

BindingList<ClassName> lst = List.Select(obj => obj.Number == "NN").ToList<ClassName>();

.................................................

列表:

BindingList<ClassName> List = new BindingList<ClassName>();

错误:

System.Collections.Generic.IEnumerable'不包含'ToList'的定义,并且最佳扩展方法重载'System.Linq.Enumerable.ToList(System.Collections.Generic.IEnumerable)'具有一些无效参数

Why is this warning?

BindingList<ClassName> lst = List.Select(obj => obj.Number == "NN").ToList<ClassName>();

.................................................

List:

BindingList<ClassName> List = new BindingList<ClassName>();

Erro:

System.Collections.Generic.IEnumerable' does not contain a definition for 'ToList' and the best extension method overload 'System.Linq.Enumerable.ToList(System.Collections.Generic.IEnumerable)' has some invalid arguments

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡紫姑娘! 2024-10-23 17:28:03

您的意思是 Where 而不是 Select 吗?

List.Select(obj => obj.Number == "NN")

是一个投影,其中对于列表中的每个项目,它返回字符串 "NN" - 您现在有一个 n 次的序列 - "NN";然后,您尝试将其强制放入 ClassName 列表中。然后,您进一步尝试将 List 转换为 BindingList,但除了 之外,它们之间没有任何关系IList

我希望您的意思是:

BindingList<ClassName> lst = new BindingList<ClassName>(
        List.Where(obj => obj.Number == "NN").ToList());

Do you mean Where instead of Select?

List.Select(obj => obj.Number == "NN")

is a projection where for each item in the list it returns the string "NN" - you now have a sequence of n-times-"NN"; you then try to force this into a list of ClassName. You then further attempt to cast a List<ClassName> to BindingList<ClassName>, but there is no relationship between them other than IList<T>

I expect you mean:

BindingList<ClassName> lst = new BindingList<ClassName>(
        List.Where(obj => obj.Number == "NN").ToList());
怪我鬧 2024-10-23 17:28:03

ToList() LINQ 方法将 enumerable 转换为 List,而不是 BindingList

ToList<T>() LINQ method converts enumerable into List<T>, not into BindingList<T>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文