Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
c2c47a99
Commit
c2c47a99
authored
Jan 10, 2014
by
Алексей
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Type fix
parent
7dd0d97c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
active-record.md
docs/guide/active-record.md
+2
-2
No files found.
docs/guide/active-record.md
View file @
c2c47a99
...
...
@@ -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 10
0
//
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'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment