我数据库有
mp3 title  等字段
2.mp3  oklll
3.mp3  lkasdfas现在我想用C#动态的给下边的代码加mp3记录,增加播放的歌曲。。
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
    <title>Ounage Playlist</title>
    <creator>Dew</creator>
    <link>http://www.blup.fr/</link>
    <info>The Best Playlist for Testing</info>
    <image>covers/tracklist.jpg</image>    <trackList>        <track>
          <location>mp3/test1.mp3</location>
          <creator>Bedrich Smetana</creator>
          <album>Má Vlast</album>
          <title>La Moldau (Vltava)</title>
          <annotation>I love this song</annotation>
          <duration>32000</duration>
          <image>covers/1.jpg</image>
          <info></info>
          <link>http://fr.wikipedia.org/wiki/M%C3%A1_Vlast_(Smetana)</link>
        </track>
这段是控制mp3地址,标题等的。如果我把数据记录添加给XML,这段会自动增加mp3,
    </trackList>
</playlist>
现在我应怎么做才能把记录加进去。