Answers for "Yii2 Dynamic Relational, Eager loading"

PHP
0

Yii2 Dynamic Relational, Eager loading

// SELECT * FROM `customer` LIMIT 100;
// SELECT * FROM `orders` WHERE `customer_id` IN (...)
$customers = Customer::find()
    ->with('orders')
    ->limit(100)
    ->all();

foreach ($customers as $customer) {
    // no SQL executed
    $orders = $customer->orders;
}
Posted by: Guest on February-21-2022

Browse Popular Code Answers by Language