我有 2 个相关实体 - 类别和费用。费用有一个日期 - 费用产生的时间。
Category 实体与多个 Expense 实体具有一对多的关系,这些实体本身具有 name(product) 和 price 属性。
我想计算当月单个类别的所有费用->价格属性的总和。(我有工作 findExpensesForMonthAndCategory 方法)
你能帮我吗?
类别
class Category
{
protected $name;
protected $expenses;
public function __construct()
{
$this->expenses = new ArrayCollection();
}
}
费用
class Expense
{
protected $category;
protected $product;
protected $price;
protected $date;
}