還使用了非常容易處理的xml屬性。我拒絕使用以下方法是使用舊的序列化程序。
public class Product
{
[XmlAttribute("id")]
public int Id
{
get;
set;
}
[XmlAttribute("name")]
public string Name
{
get;
set;
}
[XmlAttribute("quantity")]
public int Quantity
{
get;
set;
}
}
[XmlRoot("Products")]
public class Products
{
[XmlAttribute("nid")]
public int Id
{
get;
set;
}
[XmlElement(ElementName = "Product")]
public List<Product> AllProducts { get; set; }
}
現在你的控制器可以只返回產品,如:
public Products Get()
{
return new Products
{
AllProducts = new List<Product>
{
new Product {Id = 1, Name = "Product1", Quantity = 20},
new Product {Id = 2, Name = "Product2", Quantity = 37},
new Product {Id = 3, Name = "Product3", Quantity = 6},
new Product {Id = 4, Name = "Product4", Quantity = 2},
new Product {Id = 5, Name = "Product5", Quantity = 50},
}
};
}
現在你可以指定在啓動時的串行像這樣:
var productssXmlFormatter = GlobalConfiguration.Configuration.Formatters.XmlFormatter;
productssXmlFormatter.SetSerializer<Products>(new XmlSerializer(typeof(Products)));
我知道這是不是最不得不指定序列化器並失去EF和Linq的靈活性和便利性。或者至少不得不介入而不是僅僅返回IEnumerable <>。
我必須給予信貸以下網站作爲我第一次聽說這種方式從網站:http://justthisguy.co.uk/outputting-custom-xml-net-web-api/
這將導致以下XML:
<Products nid="0">
<Product id="1" name="Product1" quantity="20"/>
<Product id="2" name="Product2" quantity="37"/>
<Product id="3" name="Product3" quantity="6"/>
<Product id="4" name="Product4" quantity="2"/>
<Product id="5" name="Product5" quantity="50"/>
</Products>
請不要忘記看看列出的網站。
這裏是類似的線程 - http://stackoverflow.com/a/11794647/2152334。提供的答案可以通過ActionFilters輕鬆改進,使其更具通用性和聲明性。 – Yura 2015-03-31 15:32:52