我一直在根据 www.asp.net 上的指南探索 WEB API,但在尝试从表中过滤列时遇到了问题。
我的代码就是这样的:
// GET api/Admin
public IEnumerable<Product> GetProducts(testvar = "")
{
IQueryable<Product> productString = db.Products;
if (testvar != "")
{
productString = productString.ToList().Select(i => new Product
{
Name = i.Name
}).AsQueryable();
}
return productString;
}
我要做的就是从我的 JSON 的 Product 表中检索 Name 列。但是,而不是得到类似的东西:
[{"Name":"Hammer"}] or [{"$id":"1","Name":"Hammer"}]
我越来越:
[{"$id":"1","Id":0,"Name":"Hammer","Price":0.0,"ActualCost":0.0}]
Price 和 ActualCost 值通常为 16.99 和 20.00,但不会删除它们,而是将它们返回为 0。对于 Id 也是如此。
有没有一种简单的方法可以阻止它返回 Id、Price 和 ActualCost?也许我错过了一些非常简单的东西,但下面的两个链接是我找到的最接近的链接。
根据我一直在使用的指南(http://www.asp.net/web-api/overview/creating-web-apis/using-web-api-with-entity-framework/using-web-api- with-entity-framework,-part-1 ) 我正在使用带有 Orders、Projects 和 OrderDetails 表的 MVC 4 项目。
谢谢