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
e5c733dd
Commit
e5c733dd
authored
Dec 16, 2014
by
Hisateru Tanaka
Committed by
Nobuo Kihara
Dec 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
他のフレームワークでは連結テーブルより中間テーブルと訳すことが多い
parent
58516ae8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
db-active-record.md
docs/guide-ja/db-active-record.md
+5
-5
No files found.
docs/guide-ja/db-active-record.md
View file @
e5c733dd
...
...
@@ -467,13 +467,13 @@ $orders = $customer->getBigOrders(200)->all();
例えば、
`$customer->getOrders()`
は
`ActiveQuery`
のインスタンスを返し、
`$customer->orders`
は
`Order`
オブジェクトの配列 (またはクエリ結果が無い場合は空の配列) を返します。
連結
テーブルを使うリレーション
中間
テーブルを使うリレーション
------------------------------
場合によっては、二つのテーブルが
[
連結
テーブル
][]
と呼ばれる中間的なテーブルによって関連付けられていることがあります。
場合によっては、二つのテーブルが
[
中間
テーブル
][]
と呼ばれる中間的なテーブルによって関連付けられていることがあります。
そのようなリレーションを宣言するために、
[
[yii\db\ActiveQuery::via()|via()
]
] または
[
[yii\db\ActiveQuery::viaTable()|viaTable()
]
] メソッドを呼んで、
[
[yii\db\ActiveQuery
]
] オブジェクトをカスタマイズすることが出来ます。
例えば、テーブル
`order`
とテーブル
`item`
が
連結
テーブル
`order_item`
によって関連付けられている場合、
`Order`
クラスにおいて
`items`
リレーションを次のように宣言することが出来ます。
例えば、テーブル
`order`
とテーブル
`item`
が
中間
テーブル
`order_item`
によって関連付けられている場合、
`Order`
クラスにおいて
`items`
リレーションを次のように宣言することが出来ます。
```
php
class
Order
extends
\yii\db\ActiveRecord
...
...
@@ -505,7 +505,7 @@ class Order extends \yii\db\ActiveRecord
}
```
[
連結
テーブル
]:
https://en.wikipedia.org/wiki/Junction_table
"Junction table on Wikipedia"
[
中間
テーブル
]:
https://en.wikipedia.org/wiki/Junction_table
"Junction table on Wikipedia"
レイジーローディングとイーガーローディング
...
...
@@ -560,7 +560,7 @@ foreach ($customers as $customer) {
ご覧のように、同じ仕事をするのに必要な SQL クエリがたった二つになります。
> Info|情報: 一般化して言うと、`N` 個のリレーションのうち `M` 個のリレーションが `via()` または `viaTable()` によって定義されている場合、この `N` 個のリレーションをイーガーロードしようとすると、合計で `1+M+N` 個の SQL クエリが実行されます。
> 主たるテーブルの行を返すために一つ、`via()` または `viaTable()` の呼び出しに対応する `M` 個の
連結
テーブルのそれぞれに対して一つずつ、そして、`N` 個の関連テーブルのそれぞれに対して一つずつ、という訳です。
> 主たるテーブルの行を返すために一つ、`via()` または `viaTable()` の呼び出しに対応する `M` 個の
中間
テーブルのそれぞれに対して一つずつ、そして、`N` 個の関連テーブルのそれぞれに対して一つずつ、という訳です。
> Note|注意: イーガーローディングで `select()` をカスタマイズしようとする場合は、関連モデルにリンクするカラムを必ず含めてください。
> そうしないと、関連モデルは読み出されません。例えば、
...
...
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