将List作为XElement传递以用作XML Datatype参数

时间:2012-07-04 07:27:54

标签: c# .net sql-server xml linq-to-sql

我在SQL Server中有一个存储过程

CREATE PROCEDURE ParseXML (@InputXML xml)

输入参数的数据类型是“xml”。

在LINQ to SQL生成的存储过程代码中,输入参数是System.Xml.Linq.XElement

[global::System.Data.Linq.Mapping.FunctionAttribute(Name="dbo.ParseXML")]
public ISingleResult<ParseXMLResult> ParseXML([global::System.Data.Linq.Mapping.ParameterAttribute(Name="InputXML", DbType="Xml")] System.Xml.Linq.XElement inputXML)

现在,如何将以下List传递给ParseXML方法以使存储过程正常工作?

修改

阅读答案后,下面列出了另一种解决方案

XElement root = new XElement("ArrayOfBankAccountDTOForStatus",
new XAttribute(XNamespace.Xmlns + "xsi", "http://www.w3.org/2001/XMLSchema-instance"),
new XAttribute(XNamespace.Xmlns + "xsd", "http://www.w3.org/2001/XMLSchema"));


foreach (var element in bankAccountDTOList)
{

 XElement ex= new XElement("BankAccountDTOForStatus", 
                      new XElement("BankAccountID", element.BankAccountID),
                      new XElement("Status", element.Status));


 root.Add(ex);
} 

问题中的CODE

        string connectionstring = "Data Source=.;Initial Catalog=LibraryReservationSystem;Integrated Security=True;Connect Timeout=30";
        var theDataContext = new DBML_Project.MyDataClassesDataContext(connectionstring);

        List<DTOLayer.BankAccountDTOForStatus> bankAccountDTOList = new List<DTOLayer.BankAccountDTOForStatus>();
        DTOLayer.BankAccountDTOForStatus presentAccount1 = new DTOLayer.BankAccountDTOForStatus();
        presentAccount1.BankAccountID = 5;
        presentAccount1.Status = "FrozenF13";

        DTOLayer.BankAccountDTOForStatus presentAccount2 = new DTOLayer.BankAccountDTOForStatus();
        presentAccount2.BankAccountID = 6;
        presentAccount2.Status = "FrozenF23";
        bankAccountDTOList.Add(presentAccount1);
        bankAccountDTOList.Add(presentAccount2);

        //theDataContext.ParseXML(inputXML);

必需的XML结构

enter image description here

注意:此XML用于某些操作,而不是直接以XML格式存储在数据库中。我需要编写一个select列表来列出XML中的数据。

存储过程逻辑

DECLARE @MyTable TABLE (RowNumber int, BankAccountID int, StatusVal varchar(max))

INSERT INTO @MyTable(RowNumber, BankAccountID,StatusVal)

SELECT ROW_NUMBER() OVER(ORDER BY c.value('BankAccountID[1]','int') ASC) AS Row,
    c.value('BankAccountID[1]','int'),
    c.value('Status[1]','varchar(32)')
FROM
    @inputXML.nodes('//BankAccountDTOForStatus') T(c);

阅读

  1. How to serialize and save an object to database as Xml using Linq to SQL

  2. How to use a LINQ query to get XElement values when XElements have same name

  3. Linq-to-SQL With XML Database Fields -- Why does this work?

  4. http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=176385

2 个答案:

答案 0 :(得分:7)

您可以将列表转换为这样的XML片段:

        IEnumerable<XElement> el = list.Select(i => 
                            new XElement("BankAccountDTOForStatus", 
                              new XElement("BankAccountID", i.BankAccountID),
                              new XElement("Status", i.Status)
                            ));

然后你可以把它变成一个XElement:

        XElement root = new XElement("root", el);

现在你可以将它作为参数inputXML传递给ParseXML,它是XElement类型。 在存储过程处理它像这样:

DECLARE @InputXML NVARCHAR(1024) = N'
<root>
 <BankAccountDTOForStatus>
     <BankAccountID>2</BankAccountID>
     <Status>FrozenFA</Status>
 </BankAccountDTOForStatus>
 <BankAccountDTOForStatus>
     <BankAccountID>3</BankAccountID>
     <Status>FrozenSB</Status>
 </BankAccountDTOForStatus>
</root>'

DECLARE @handle INT

EXEC sp_xml_preparedocument @handle OUTPUT, @InputXML

SELECT  *
FROM    OPENXML(@handle, '/root/BankAccountDTOForStatus', 1)
WITH    (
            BankAccountID INT 'BankAccountID/text()',
            Status VARCHAR(128) 'Status/text()'
)

EXEC sp_xml_removedocument @handle

答案 1 :(得分:2)

你需要这样的东西:

  • 定义您的输入XML - 例如作为一个字符串
  • 将其转换为XDocument
  • XDocument.Root传递给Linq-to-SQL数据上下文中的ParseXML方法

所以你的代码会是这样的:

// define input XML - e.g. load from file or whatever
string xmlInput =
            @"<ArrayOfBankAccountDTOForStatus>
                         <BankAccountDTOForStatus>
                             <BankAccountID>2</BankAccountID>
                             <Status>FrozenFA</Status>
                         </BankAccountDTOForStatus>
                         <BankAccountDTOForStatus>
                             <BankAccountID>3</BankAccountID>
                             <Status>FrozenSB</Status>
                         </BankAccountDTOForStatus>
                     </ArrayOfBankAccountDTOForStatus>";

// convert that into a XDocument
XDocument doc = XDocument.Parse(xmlInput);

// using your DataContext - call ParseXML
using (DataClasses1DataContext ctx = new DataClasses1DataContext())
{
    var result = ctx.ParseXML(doc.Root);
}

就是这样!现在你的XML被传递给存储过程并在那里处理。