Hello,
merry Christmas to all.
> * Each product has one vendor
> * Each vendor has many addresses
> * Each address has one state
>
> Task: In a single query, get all Products with their vendors, the vendors'
> addresses, and the state for each address.
Please add also the possibility to say: Ge
With the new "arbitrary-depth joins" feature, you can join as deep as you'd
like. The syntax I'm using for this feature right now is a chain of
relationship names, with "." between each one. Example:
$products =
Product::Manager->get_products(
require_objects => [ 'vendor.addresse
On 12/23/05 11:38 PM, Cees Hek wrote:
> On 12/23/05, John Siracusa <[EMAIL PROTECTED]> wrote:
>> With the new "arbitrary-depth joins" feature, you can join as deep as you'd
>> like. The syntax I'm using for this feature right now is a chain of
>> relationship names, with "." between each one. Exa
On 12/23/05, John Siracusa <[EMAIL PROTECTED]> wrote:
> With the new "arbitrary-depth joins" feature, you can join as deep as you'd
> like. The syntax I'm using for this feature right now is a chain of
> relationship names, with "." between each one. Example:
>
> $products =
> Product::