我想在wcf rest服务中更改xml响应格式 例如
public class Person
{
public string Name {get; set; }
public string LastName {get; set; }
public List<Item> items {get; set; }
}
public class Item
{
public string Key { get; set; }
public string Vaule { get; set; }
}
必须以这种方式显示课程
<Person Name="Jhon" LastName="Doe">
<Item Key="Color" Value="White"/>
</Person>