数据库的表中包含一个SqlXml类型的列;在ASP .NET中读出该列,形如:
<authors>
 <author>
   <name>张</name>
   <email>[email protected]</email>
   <phone>13900001111</phone>
 </author>
 <author>
   <name>李</name>
   <email>[email protected]</email>
   <phone>13312341111</phone>
 </author>
 ...
<authors>怎样用最少的代码将该SqlXml类型的对象绑定到一个GridView上呢?使GridView像显示一般关系表格一样显示上面的XML数据