使用 LINQ 查询和更新集合中的属性
使用 LINQ 更新集合中特定项目的单个属性的最简洁/简单的方法是什么?
例如,如果我有以下列表:
public class Ticket
{
public string Name { get; set; }
public string Code { get; set; }
public bool Selected { get; set; }
}
如何使用 LINQ 更新票证项目的“Selected”属性,其中“Name”属性的值为“Beach”。在 SQL 中,它会是:
UPDATE Tickets SET Selected = true WHERE Name = 'Beach'
我认为我走在正确的轨道上......
tickets.Select(x => { x.Selected = true; return x; }).ToList().Where(x => x.Name == "Beach");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以更改顺序,然后使用 ForEach 运算符:
注意:
ToList()
,因为 IEnumerable 不支持 Linq 中的 ForEach - 请参阅 LINQ 相当于 IEnumerableforeach(x in list)
C# 循环SubmitChanges()
来保存更改。You can change the order, then use the ForEach operator:
Note:
ToList()
is needed because IEnumerable doesn't support ForEach in Linq - see LINQ equivalent of foreach for IEnumerable<T>foreach(x in list)
C# loopSubmitChanges()
in order to persist your changes.回答有点晚了,但我认为我们不必转换为
ToList()
正如斯图尔特提到的那样,实际上我们能做的只是调整斯图尔特代码(这是一段很棒的代码),如下所示另一种选择
Bit late for an answer but i think we don't have to convert to
ToList()
as Mentioned by stuart what actually we can do is just tweak Stuart code(which is great piece of code) as followingAnother option
首先我要说的是,不要使用 LINQ 来设置这样的属性,这不是 LINQ 的用途。
您应该编写查询来选择要更改的行,在循环中更改它们,然后将更改提交到数据库(如果是 LINQ to SQL)。
Let me start off by saying this, don't use LINQ to set properties like that, that's not how LINQ's meant to be used.
You should write the query to select the rows to be changed, change them in a loop, and submit the changes to the database (if LINQ to SQL).