gpt4 book ai didi

c# - XElement.Parse 不允许循环

转载 作者:太空宇宙 更新时间:2023-11-03 22:48:05 24 4
gpt4 key购买 nike

我的程序使用 XML 构建一个 html 文件。 (我使用 System.Xml,使用 System.Xml.Linq)。我想以这种方式保留代码的形式,但是这个解决方案不起作用,因为 XElement.Parse 不允许我创建循环。谁能帮忙?

StringBuilder table_dynamic10 = new StringBuilder();
using (SqlConnection conn = new SqlConnection(conString))
{
string query = string.Format("{0}{1}'", "SELECT [VALUE1],[VALUE2] FROM ...");
using (SqlCommand cmd = new SqlCommand(query, conn))
{
conn.Open();
using (SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
while (reader.Read())
{
table_dynamic10.Append("<tr><td>" + reader["VALUE1"].ToString() + "</td><td>" + reader["VALUE2"].ToString() + "</td></tr>");
}
}
}
}
var xDocument = new XDocument(
new XDocumentType("html", null, null, null),
new XElement("html",
new XElement("head"),
new XElement("body",
XElement.Parse(table_dynamic10.ToString()))))

最佳答案

与其构建字符串,我建议直接构建 XML:

var body = new XElement("body");
using (SqlConnection conn = new SqlConnection(conString))
{
string query = string.Format("{0}{1}'", "SELECT [VALUE1],[VALUE2] FROM ...");
using (SqlCommand cmd = new SqlCommand(query, conn))
{
conn.Open();
using (SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
while (reader.Read())
{
body.Add(new XElement("tr",
new XElement("td", reader["VALUE1"]),
new XElement("td", reader["VALUE2"])));
}
}
}
}

var document = new XDocument(
new XDocumentType("html", null, null, null),
new XElement("html", new XElement("head"), body));

请注意,这意味着数据库中的值将被视为 值,并带有适当的引号等,而不是被解析为 XML。因此,如果您在数据库中有一个 foo & bar 的值,那将没问题,并且最终在 XML 文档中作为 foo &栏.

关于c# - XElement.Parse 不允许循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48900754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com