要将多个值传递给存储过程,我正在使用此方法。
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');
这项技术是否适合使用,或者我可以使用其他任何更优化和更快的技术。