如何从 BindingList> 中选择特定项?

发布于 2024-11-15 22:59:28 字数 289 浏览 2 评论 0 原文

BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>();

上面的代码存储了大约 10-30 个对象 as KeyValuePair

我需要以某种方式选择一个元素,比如使用键“id”,

我该如何处理?

BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>();

Code above stores around 10-30 objects as KeyValuePair<string, string>

I need to somehow select an element let's say with key "id"

How do I go about that?

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

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

发布评论

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

评论(2

三人与歌 2024-11-22 22:59:28
properties.Select(k => k.Key == "id").FirstOrDefault();
properties.Select(k => k.Key == "id").FirstOrDefault();
罪#恶を代价 2024-11-22 22:59:28

BindingList 不直接实现 IEnumerable,因此即使使用 System.Linq<,FirstOrDefault()(LINQ 对象)也无法工作/代码>。您需要定位底层集合。以下对我有用:

var myObject = ( (IEnumerable<SomeObjectType>) myBindingSource.List ).FirstOrDefault( d => d.SomeProperty == "some property value" );

BindingList does not directly implement IEnumerable so FirstOrDefault() (LINQ to objects) will not work, even when using System.Linq. You need to target the underlying collection. The following worked for me:

var myObject = ( (IEnumerable<SomeObjectType>) myBindingSource.List ).FirstOrDefault( d => d.SomeProperty == "some property value" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文