我在此link
中看到了以下解决方案select * from xmltable('/dept/employee' PASSING convert('<dept bldg="101">
<employee id="901">
<name>
<first>John</first>
<last>Doe</last>
</name>
<office>344</office>
<salary currency="USD">55000</salary>
</employee>
<employee id="902">
<name>
<first>Peter</first>
<last>Pan</last>
</name>
<office>216</office>
<phone>905-416-5004</phone>
</employee>
</dept>', xml) COLUMNS
empID integer PATH '@id',
firstname string PATH 'name/first',
lastname string PATH 'name/last') AS employee
这正是我在寻找的解决方案,但在C#中!
有可能吗?任何建议或参考都会有所帮助。
感谢。