如何更改 ObservableCollection形式的值与 LINQ?

发布于 2024-11-06 12:52:59 字数 152 浏览 0 评论 0原文

我有一个 ObservableCollection 集合。该集合包含 ID、名字、名字、地址、密码、城市、薪水和描述等数据。

我想更改这个id为10或12或任何ID的集合的描述。

提前致谢。

I have a ObservableCollection<AnyClass> collection. This collection has data like ID, first name, second name, address, pin, city, Salary and Description.

I want to change the description of this collection whose id is 10 or 12 or any ID.

Thanks in advance.

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

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

发布评论

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

评论(2

葬花如无物 2024-11-13 12:52:59

试试这个:

foreach(var item in collection.Where(x => x.ID == 10))
{
    item.Description = newDescription;
}

Try this:

foreach(var item in collection.Where(x => x.ID == 10))
{
    item.Description = newDescription;
}
思慕 2024-11-13 12:52:59

虽然这是一个老问题,但有人可能会发现我的答案很有用。

您可以通过使用 LINQ 使用适当的谓词查找必要的项目,然后进行修改来完成此操作。

var selectedItem = myCollection.FirstOrDefault(x => x.Id == 10);

if (selectedItem != null)
{
   selectedItem.Description = "Do something";
}

希望它对某人有帮助。

Although it is old question, someone may find my answer useful.

You can do this by using LINQ to find necessary item using appropriate predicate and then modify.

var selectedItem = myCollection.FirstOrDefault(x => x.Id == 10);

if (selectedItem != null)
{
   selectedItem.Description = "Do something";
}

Hope it helped to someone.

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