如何使用 xDocument 从数据表中的此字符串中获取 title1 的值
<Person ActionType = "Update" Title1="Miss" />
我尝试了后代,XAttributes 和各种......也许输入是错误的,但
XDocument xml = XDocument.Parse(row["XMLTransaction"].ToString());
IEnumerable<XAttribute> query =
from transaction in xml.Root.Elements()
select transaction.Attribute(attribute);