This repository was archived by the owner on May 14, 2022. It is now read-only.

Description
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 :
$datatable = $this->get('lankit_datatables')->getDatatable('WaldoMyBundle:Customer');
$datatable->setSelect("COUNT(Customer.shoppingCart) as nbShoppingCart");
return $datatable->getSearchResults();
Thanks