如何更改 ObservableCollection形式的值与 LINQ?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
虽然这是一个老问题,但有人可能会发现我的答案很有用。
您可以通过使用 LINQ 使用适当的谓词查找必要的项目,然后进行修改来完成此操作。
希望它对某人有帮助。
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.
Hope it helped to someone.