有没有其他优化的方法来避免XElement对象进入程序?

时间:2017-06-30 07:50:23

标签: c# mysql xml asp.net-mvc stored-procedures

要将多个值传递给存储过程,我正在使用此方法。

XElement xl = new XElement("root",
            new XAttribute("OType", "Update"),
            new XAttribute("Target", "OrderActivation"),
            new XElement("Id", id),
            new XElement("UserCode", Session["usercode"]));

我将这个xl对象传递给存储过程,我正在提取这个xml对象。

Set OType           =ExtractValue(xml,'/root/@OType');
Set Target          =ExtractValue(xml,'/root/@Target');

这项技术是否适合使用,或者我可以使用其他任何更优化和更快的技术。

0 个答案:

没有答案