Browse Source

Type fix

tags/2.0.0-beta
Алексей 11 years ago
parent
commit
c2c47a99ae
  1. 4
      docs/guide/active-record.md

4
docs/guide/active-record.md

@ -376,8 +376,8 @@ $customer = Customer::find(1);
// lazy loading: SELECT * FROM tbl_order WHERE customer_id=1 AND subtotal>100
$orders = $customer->getOrders()->where('subtotal>100')->all();
// eager loading: SELECT * FROM tbl_customer LIMIT 10
SELECT * FROM tbl_order WHERE customer_id IN (1,2,...) AND subtotal>100
// eager loading: SELECT * FROM tbl_customer LIMIT 100
// SELECT * FROM tbl_order WHERE customer_id IN (1,2,...) AND subtotal>100
$customers = Customer::find()->limit(100)->with([
'orders' => function($query) {
$query->andWhere('subtotal>100');

Loading…
Cancel
Save