SQL クエリがあり、テーブルからいくつかのデータを選択します。
ID Name Number Email
1 a 123 a@a.com
2 b 321 b@b.com
3 c 432 c@c.com
これらのデータはテーブルから取得します。データからxmlファイルを作成したい。このような
<Students>
<Student>
<id>1</id>
<name>a</name>
<number>123</number>
<email>a@a.com</email>
</Student>
<Student>
<id>2</id>
<name>b</name>
<number>321</number>
<email>b@b.com</email>
</Student>
<Student>
<id>3</id>
<name>c</name>
<number>432</number>
<email>c@c.com</email>
</Student>
</Students>
C# と SQL Server でそれを行うにはどうすればよいですか?