除了数据库中表的其他元素之外,我还想返回一个集合的计数

时间:2019-02-17 22:04:26

标签: asp.net-web-api controller

除了买家类的参数外,我还想返回一个值,我想使用控制器中的GET方法返回买家拥有的属性数量。

如何更改GET功能以选择全名,信用和所拥有公寓的数量:

public class Buyer
{
[Key]
public int ID { get; set; }
public string FullName { get; set; }
public int Credit { get; set; }
public ICollection<Apartment> apartments { get; set; }
} 

// GET: api/Buyers
[HttpGet]
public IEnumerable<Buyer> GetBuyers()
{
return _context.Buyers
.Include(a => a.apartments);
}

0 个答案:

没有答案