Hi, is it possible to add documentation for how to add calculated fields. In my case, I have a oneToMany relationship and i want to know how much row has the entity. For exemple : ``` php $datatable = $this->get('lankit_datatables')->getDatatable('WaldoMyBundle:Customer'); $datatable->setSelect("COUNT(Customer.shoppingCart) as nbShoppingCart"); return $datatable->getSearchResults(); ``` Thanks
Hi,
is it possible to add documentation for how to add calculated fields.
In my case, I have a oneToMany relationship and i want to know how much row has the entity.
For exemple :
Thanks