Welcome Guest, Not a member yet? Register   Sign In
DataMapper - Counting related items
#1

[eluser]NeilyM[/eluser]
Hi guys

I have a question about counting related items when using Datamapper. The following hopefully illustrates what I'm trying to do because my own code would be pretty meaningless without the context. This example has the same "has_many" and "has_one" releationships as mine.

Country has_many Person
Continent has_many Country
Country has_one Continent

I have a Continent and I need to know how many people are in it.

$continent = new Continent;
$continent->get_by_id(1);
$count = $continent->where_related('country/person')->count();

... is what I think I need but it doesn't seem to work.

$continent = new Continent;
$continent->get_by_id(1);
$count = $continent->where_related('country/person')->get()->count();

...does seem to work but I think I am right in saying it loads all the Person records and is therefore not an ideal solution.

Any ideas anyone?

Thank you once again.

Cheers,

NeilyM


Messages In This Thread
DataMapper - Counting related items - by El Forum - 03-21-2011, 11:58 AM
DataMapper - Counting related items - by El Forum - 03-21-2011, 05:03 PM
DataMapper - Counting related items - by El Forum - 03-21-2011, 06:06 PM
DataMapper - Counting related items - by El Forum - 03-21-2011, 06:18 PM
DataMapper - Counting related items - by El Forum - 03-22-2011, 01:37 AM
DataMapper - Counting related items - by El Forum - 03-22-2011, 03:53 AM
DataMapper - Counting related items - by El Forum - 03-22-2011, 05:45 AM
DataMapper - Counting related items - by El Forum - 03-24-2011, 07:50 AM
DataMapper - Counting related items - by El Forum - 11-22-2012, 12:22 PM
DataMapper - Counting related items - by El Forum - 11-22-2012, 02:03 PM
DataMapper - Counting related items - by El Forum - 11-23-2012, 01:27 AM
DataMapper - Counting related items - by El Forum - 11-23-2012, 03:39 AM
DataMapper - Counting related items - by El Forum - 11-23-2012, 07:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB