DataMapper: count on more than one related object |
[eluser]Genki1[/eluser]
For an already retrieved object, is there a "built-in" function to count the number of related objects from multiple relationships? DataMapper has a nice function to count a single relationship (http://datamapper.wanwizard.eu/pages/cou...ng.Related), but I'd like to count on more than one relationship. For example: User (1:M) Profiles (M:1) Converters Each User can have multiple Profiles for a single Converter. After retrieving a Profile, I want to know how many Profiles the User has for that same Converter. So far, my solution is: Code: // get Profile by ID Is there a simpler/more elegant/concise way to accomplish this? |
Messages In This Thread |
DataMapper: count on more than one related object - by El Forum - 05-11-2012, 03:32 PM
DataMapper: count on more than one related object - by El Forum - 05-12-2012, 03:28 AM
DataMapper: count on more than one related object - by El Forum - 05-12-2012, 03:48 AM
|