在 C# 中更新数据表而不使用循环?
假设我的数据表中有三列
code
name
color
如果我知道代码和名称,如何更新颜色代码和名称符合我的标准的特定行?我想不使用循环来做到这一点!
Let suppose there are three columns in my DataTable
code
name
color
If I know the code and name, how can I update the color of that specific row whose code and name match my criteria? I want to do this without using Loops!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 LINQ:
当然,我假设所有这些条件都是字符串。您应该将强制转换更改为正确的类型。
You can use LINQ:
Of course I'm assuming all those criteria are strings. You should change the casts to the correct types.
使用 LINQ:
With LINQ:
你可以这样做:
You could do: