Currently I have a database with different tables. I would like to map each record for each table to a corresponding predefined XML template to form a XML documents.For exampleOne of the tables is person. It has fields like name, age, address. And its corresponding template is like \[code\]<person name="" age=""> <Address> </Address> </person>\[/code\]Is there a C# library that will do such a transformation without using the XMLWriter directly?Thanks