更新数据集 c# asp
我用 C# 编写了一些逻辑。现在我需要将其更新为已经创建的数据集。 数据集包含一个表 PackageTable。它有两个字段,PackageId 和 PackagePrice 现在,我想在表中搜索特定 Packageid,例如“P1”,并使用新值更新 PackagePrice,例如“100”。
请告诉我如何用 C# 做到这一点。 另请注意,我没有使用文本框或网格视图等来更新它。 提前致谢
I have written some logic in C#. Now I need to update it to the already created Dataset.
The Dataset is containing a Table PackageTable. It has two fields, PackageId, and PackagePrice
Now, I want to search the table for certain Packageid, say 'P1' and update the PackagePrice with a new value , say '100'.
Please tell me how to do it with C#.
Please also note that I am not updating it using a textbox or gridview etc.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将此
dt作为您的数据表,从中选择行,然后将字段值设置为您需要的值。
来自评论,小例子
You can try this
dt is your data table, select the rows from it, then set the field value to what you require.
From comments, small example