我想创建 xml 文件并将数据库中的数据写入其中。文件将动态创建。
我将数据存储在 DataTable 中。查询是select documentId,documentContent from tblDocument where status = 'F'
其中documentContent是 xml 数据。
我尝试了以下代码,但它不起作用,
foreach(DataRow dr in dt.Rows)
{
string filepath = ConfigurationManager.Appsetings[Constants.FailedDocuments];
string filename = "message_"+ dr["documentId"].ToString();
string content = dr["documentContent"].ToString();
XDocument xdoc = new XDocument();
xdoc.parse(content);
xdoc.Load(filepath+filename);
}
我是新手,不知道如何以及在哪里正确放置此代码,因为我想写content