我有一个简单的 SQL 查询,我想查询数据库并将结果作为 XML 返回。我使用了关键字for XML
,但它表示 XML 不是有效的语法。帮助
using (SqlConnection c= new SqlConnection(cs))
{
string s= "select * from Doctor for XML";
using (SqlCommand cmd = new SqlCommand(s,c))
{
using (SqlDataAdapter ad = new SqlDataAdapter(cmd))
{
ad.Fill(t); // IT SAYS XML IS NOT A VALID SYNTAX
}
}
}