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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
76e5875a
Commit
76e5875a
authored
Jul 13, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4291 from mrarthur/patch-3
Typos and errors in docs
parents
84e6c9a3
bc050afd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
intro-upgrade-from-v1.md
docs/guide-ru/intro-upgrade-from-v1.md
+2
-2
No files found.
docs/guide-ru/intro-upgrade-from-v1.md
View file @
76e5875a
...
@@ -387,7 +387,7 @@ $sql = $command->sql;
...
@@ -387,7 +387,7 @@ $sql = $command->sql;
$rows
=
$command
->
queryAll
();
$rows
=
$command
->
queryAll
();
```
```
Лучшим спосом использования данных методов является работа с
[
Active Record
](
db-active-record.md
)
.
Лучшим спосо
бо
м использования данных методов является работа с
[
Active Record
](
db-active-record.md
)
.
Более детальная информация представлена в разделе
[
Построитель запросов
](
db-query-builder.md
)
.
Более детальная информация представлена в разделе
[
Построитель запросов
](
db-query-builder.md
)
.
...
@@ -436,7 +436,7 @@ Yii 2.0 осуществляет жадную загрузку (eager loading)
...
@@ -436,7 +436,7 @@ Yii 2.0 осуществляет жадную загрузку (eager loading)
Вместо того, чтобы возвращать объекты
[
[yii\db\ActiveRecord|ActiveRecord
]
], вы можете использовать метод
[
[yii\db\ActiveQuery::asArray()|asArray()
]
]
Вместо того, чтобы возвращать объекты
[
[yii\db\ActiveRecord|ActiveRecord
]
], вы можете использовать метод
[
[yii\db\ActiveQuery::asArray()|asArray()
]
]
при построении запроса, для выборки большого количества записей. Это заставит вернуть результат запроса в качестве массива, что
при построении запроса, для выборки большого количества записей. Это заставит вернуть результат запроса в качестве массива, что
может существенно
с
снизить время, нужное ЦПУ и память, при большом количестве записей. Например:
может существенно снизить время, нужное ЦПУ и память, при большом количестве записей. Например:
```
php
```
php
$customers
=
Customer
::
find
()
->
asArray
()
->
all
();
$customers
=
Customer
::
find
()
->
asArray
()
->
all
();
...
...
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