将 datarow[] 转换为 xml。是否可以?
我有一个应用程序,因为我正在使用这样的数据行对象。
DataRow[] drRow;
drRow = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");
在此之后,我在所有更改之后对列进行一些更改,如下所示
drRow[0]["Allow"] = "Yes";
,我需要将该特定数据行作为 xml 保存到数据库中。 我可以通过 getdataset() 方法将数据集转换为 xml。但我只需要保存那个特定的数据行。是否可以?如果是,请帮助我。提前致谢..
I have one application, in that i am using a datarow object like this.
DataRow[] drRow;
drRow = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");
After this i make some changes in columns like this
drRow[0]["Allow"] = "Yes";
after all the changes, i need to save that particular datarow as a xml to the db.
I can do the dataset to the xml by getdataset() method. But i need to save only that particular datarow. Is it Possible? If yes please help me. thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
恐怕这是不可能的。我建议你这样做。
I'm afraid this is not possible. I recommend you to do it this way.