我一直在使用下面的示例代码片段来更新 SQL Server 2005 数据库表。它将具有一系列属性(字段)的自定义对象List<T>
where转换T
为嵌套在行根元素内的行元素上的 XML 属性。
通过这种方式,我在一个 SQL 事务中进行了大量的插入操作。遵循这条类似的路线,我想提供一系列 XML更新而不是插入。我无法找到任何好的资料来说明如何调整这种方法。例如,根据主键 A 说通过 F 更新 B。
conn.Open();
cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandText = @"INSERT table (A,B,C,D,E,F)
SELECT Tbl.Col.value('@A','nvarchar(50)'),
Tbl.Col.value('@B','int'),
Tbl.Col.value('@C','nvarchar(50)'),
Tbl.Col.value('@D','nvarchar(1000)'),
Tbl.Col.value('@E','nvarchar(50)'),
Tbl.Col.value('@F','nvarchar(50)')
FROM @xml.nodes('//row') Tbl(Col)";
cmd.Parameters.Add("@xml", SqlDbType.Xml).Value = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement("rows",
toInsert.Select(p => new XElement("row", new XAttribute("A", x.Prop1),
new XAttribute("B", x.Prop2),
new XAttribute("C", x.Prop3),
new XAttribute("D", x.Prop4),
new XAttribute("E", x.Prop5),
new XAttribute("F", x.Prop6))))).ToString();
Console.WriteLine(cmd.ExecuteNonQuery().ToString() + " row(s) affected.");
conn.Close();