active-record.md 29.6 KB
Newer Older
Alexander Makarov committed
1 2 3
Active Record
=============

Larry Ullman committed
4
Active Record implements the [Active Record design pattern](http://en.wikipedia.org/wiki/Active_record).
5
The premise behind Active Record is that an individual [[yii\db\ActiveRecord]] object is associated with a specific row in a database table. The object's attributes are mapped to the columns of the corresponding table. Referencing an Active Record attribute is equivalent to accessing
6
the corresponding table column for that record.
Larry Ullman committed
7

Larry Ullman committed
8
As an example, say that the `Customer` ActiveRecord class is associated with the
Larry Ullman committed
9
`tbl_customer` table. This would mean that the class's `name` attribute is automatically mapped to the `name` column in `tbl_customer`.
Larry Ullman committed
10
Thanks to Active Record, assuming the variable `$customer` is an object of type `Customer`, to get the value of the `name` column for the table row, you can use the expression `$customer->name`. In this example, Active Record is providing an object-oriented interface for accessing data stored in the database. But Active Record provides much more functionality than this.
Larry Ullman committed
11

12
With Active Record, instead of writing raw SQL statements to perform database queries, you can call intuitive methods to achieve the same goals. For example, calling [[yii\db\ActiveRecord::save()|save()]] would perform an INSERT or UPDATE query, creating or updating a row in the associated table of the ActiveRecord class:
Alexander Makarov committed
13 14 15 16

```php
$customer = new Customer();
$customer->name = 'Qiang';
Qiang Xue committed
17
$customer->save();  // a new row is inserted into tbl_customer
Alexander Makarov committed
18 19 20 21 22 23 24
```


Declaring ActiveRecord Classes
------------------------------

To declare an ActiveRecord class you need to extend [[\yii\db\ActiveRecord]] and
Larry Ullman committed
25
implement the `tableName` method:
Alexander Makarov committed
26 27

```php
Qiang Xue committed
28 29 30
use yii\db\ActiveRecord;

class Customer extends ActiveRecord
Alexander Makarov committed
31 32 33 34 35 36 37 38 39 40 41
{
	/**
	 * @return string the name of the table associated with this ActiveRecord class.
	 */
	public static function tableName()
	{
		return 'tbl_customer';
	}
}
```

Larry Ullman committed
42 43 44 45 46 47 48
The `tableName` method only has to return the name of the database table associated with the class.

Class instances are obtained in one of two ways:

* Using the `new` operator to create a new, empty object
* Using a method to fetch an existing record (or records) from the database

Larry Ullman committed
49
Connecting to the Database
Alexander Makarov committed
50 51
----------------------

Carsten Brandt committed
52
ActiveRecord relies on a [[yii\db\Connection|DB connection]] to perform the underlying DB operations.
Larry Ullman committed
53
By default, ActiveRecord assumes that there is an application component named `db` which provides the needed
Carsten Brandt committed
54
[[yii\db\Connection]] instance. Usually this component is configured in application configuration file:
Alexander Makarov committed
55 56

```php
Alexander Makarov committed
57 58 59
return [
	'components' => [
		'db' => [
Alexander Makarov committed
60 61 62 63
			'class' => 'yii\db\Connection',
			'dsn' => 'mysql:host=localhost;dbname=testdb',
			'username' => 'demo',
			'password' => 'demo',
Alexander Makarov committed
64 65 66
		],
	],
];
Alexander Makarov committed
67 68
```

Larry Ullman committed
69
Please read the [Database basics](database-basics.md) section to learn more on how to configure and use database connections.
Alexander Makarov committed
70

Larry Ullman committed
71
Querying Data from the Database
Qiang Xue committed
72
---------------------------
Alexander Makarov committed
73

Qiang Xue committed
74
There are two ActiveRecord methods for querying data from database:
Alexander Makarov committed
75

76 77
 - [[yii\db\ActiveRecord::find()]]
 - [[yii\db\ActiveRecord::findBySql()]]
Alexander Makarov committed
78

Carsten Brandt committed
79
Both methods return an [[yii\db\ActiveQuery]] instance, which extends [[yii\db\Query]], and thus supports the same set of flexible and powerful DB query methods. The following examples demonstrate some of the possibilities.
Alexander Makarov committed
80 81 82 83

```php
// to retrieve all *active* customers and order them by their ID:
$customers = Customer::find()
Alexander Makarov committed
84
	->where(['status' => $active])
Alexander Makarov committed
85 86 87 88
	->orderBy('id')
	->all();

// to return a single customer whose ID is 1:
Qiang Xue committed
89 90 91
$customer = Customer::find(1);

// the above code is equivalent to the following:
Alexander Makarov committed
92
$customer = Customer::find()
Alexander Makarov committed
93
	->where(['id' => 1])
Alexander Makarov committed
94 95 96 97 98 99 100 101
	->one();

// to retrieve customers using a raw SQL statement:
$sql = 'SELECT * FROM tbl_customer';
$customers = Customer::findBySql($sql)->all();

// to return the number of *active* customers:
$count = Customer::find()
Alexander Makarov committed
102
	->where(['status' => $active])
Alexander Makarov committed
103 104 105
	->count();

// to return customers in terms of arrays rather than `Customer` objects:
Qiang Xue committed
106 107 108 109
$customers = Customer::find()
	->asArray()
	->all();
// each element of $customers is an array of name-value pairs
Alexander Makarov committed
110 111 112 113 114 115

// to index the result by customer IDs:
$customers = Customer::find()->indexBy('id')->all();
// $customers array is indexed by customer IDs
```

116 117 118 119
Batch query is also supported when working with Active Record. For example,

```php
// fetch 10 customers at a time
Qiang Xue committed
120
foreach (Customer::find()->batch(10) as $customers) {
121 122
	// $customers is an array of 10 or fewer Customer objects
}
Qiang Xue committed
123 124
// fetch 10 customers at a time and iterate them one by one
foreach (Customer::find()->each(10) as $customer) {
125 126 127
	// $customer is a Customer object
}
// batch query with eager loading
Qiang Xue committed
128
foreach (Customer::find()->with('orders')->each() as $customer) {
129 130 131 132 133 134
}
```

As explained in [Query Builder](query-builder.md), batch query is very useful when you are fetching
a large amount of data from database. It will keep your memory usage under a limit.

Alexander Makarov committed
135 136 137 138

Accessing Column Data
---------------------

Larry Ullman committed
139
ActiveRecord maps each column of the corresponding database table row to an attribute in the ActiveRecord
140
object. The attribute behaves like any regular object public property. The attribute's name will be the same as the corresponding column name, and is case-sensitive.
Alexander Makarov committed
141

Larry Ullman committed
142
To read the value of a column, you can use the following syntax:
Alexander Makarov committed
143 144

```php
Larry Ullman committed
145
// "id" and "email" are the names of columns in the table associated with $customer ActiveRecord object
Alexander Makarov committed
146
$id = $customer->id;
Larry Ullman committed
147
$email = $customer->email;
Alexander Makarov committed
148 149
```

Larry Ullman committed
150
To change the value of a column, assign a new value to the associated property and save the object:
Alexander Makarov committed
151 152

```
Larry Ullman committed
153 154 155
$customer->email = 'jane@example.com';
$customer->save();
```
Alexander Makarov committed
156

Larry Ullman committed
157
Manipulating Data in the Database
Qiang Xue committed
158
-----------------------------
Alexander Makarov committed
159

Qiang Xue committed
160
ActiveRecord provides the following methods to insert, update and delete data in the database:
Alexander Makarov committed
161

162 163 164 165 166 167 168 169
- [[yii\db\ActiveRecord::save()|save()]]
- [[yii\db\ActiveRecord::insert()|insert()]]
- [[yii\db\ActiveRecord::update()|update()]]
- [[yii\db\ActiveRecord::delete()|delete()]]
- [[yii\db\ActiveRecord::updateCounters()|updateCounters()]]
- [[yii\db\ActiveRecord::updateAll()|updateAll()]]
- [[yii\db\ActiveRecord::updateAllCounters()|updateAllCounters()]]
- [[yii\db\ActiveRecord::deleteAll()|deleteAll()]]
Qiang Xue committed
170

171
Note that [[yii\db\ActiveRecord::updateAll()|updateAll()]], [[yii\db\ActiveRecord::updateAllCounters()|updateAllCounters()]] and [[yii\db\ActiveRecord::deleteAll()|deleteAll()]] are static methods that apply to the whole database table. The other methods only apply to the row associated with the ActiveRecord object through which the method is being called.
Alexander Makarov committed
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

```php
// to insert a new customer record
$customer = new Customer;
$customer->name = 'James';
$customer->email = 'james@example.com';
$customer->save();  // equivalent to $customer->insert();

// to update an existing customer record
$customer = Customer::find($id);
$customer->email = 'james@example.com';
$customer->save();  // equivalent to $customer->update();

// to delete an existing customer record
$customer = Customer::find($id);
$customer->delete();

Qiang Xue committed
189
// to increment the age of ALL customers by 1
Alexander Makarov committed
190
Customer::updateAllCounters(['age' => 1]);
Alexander Makarov committed
191 192
```

Qiang Xue committed
193 194 195
> Info: The `save()` method will either perform an `INSERT` or `UPDATE` SQL statement, depending
  on whether the ActiveRecord being saved is new or not by checking `ActiveRecord::isNewRecord`.

Larry Ullman committed
196 197 198 199 200 201 202 203

Data Input and Validation
-------------------------

ActiveRecord inherits data validation and data input features from [[\yii\base\Model]]. Data validation is called
automatically when `save()` is performed. If data validation fails, the saving operation will be cancelled.

For more details refer to the [Model](model.md) section of this guide.
Alexander Makarov committed
204

Qiang Xue committed
205 206
Querying Relational Data
------------------------
Alexander Makarov committed
207

Larry Ullman committed
208 209
You can use ActiveRecord to also query a table's relational data (i.e., selection of data from Table A can also pull in related data from Table B). Thanks to ActiveRecord, the relational data returned can be accessed like a property of the ActiveRecord object associated with the primary table.

Qiang Xue committed
210 211
For example, with an appropriate relation declaration, by accessing `$customer->orders` you may obtain
an array of `Order` objects which represent the orders placed by the specified customer.
Alexander Makarov committed
212

Carsten Brandt committed
213
To declare a relation, define a getter method which returns an [[yii\db\ActiveRelation]] object. For example,
Alexander Makarov committed
214 215 216 217 218 219

```php
class Customer extends \yii\db\ActiveRecord
{
	public function getOrders()
	{
220
		// Customer has_many Order via Order.customer_id -> id
Luciano Baraglia committed
221
		return $this->hasMany(Order::className(), ['customer_id' => 'id']);
Alexander Makarov committed
222 223 224 225 226
	}
}

class Order extends \yii\db\ActiveRecord
{
227
	// Order has_one Customer via Customer.id -> customer_id
Alexander Makarov committed
228 229
	public function getCustomer()
	{
230
		return $this->hasOne(Customer::className(), ['id' => 'customer_id']);
Alexander Makarov committed
231 232 233 234
	}
}
```

235
The methods [[yii\db\ActiveRecord::hasMany()]] and [[yii\db\ActiveRecord::hasOne()]] used in the above
Qiang Xue committed
236 237
are used to model the many-one relationship and one-one relationship in a relational database.
For example, a customer has many orders, and an order has one customer.
Carsten Brandt committed
238
Both methods take two parameters and return an [[yii\db\ActiveRelation]] object:
Alexander Makarov committed
239

Qiang Xue committed
240
 - `$class`: the name of the class of the related model(s). This should be a fully qualified class name.
Qiang Xue committed
241 242 243 244
 - `$link`: the association between columns from the two tables. This should be given as an array.
   The keys of the array are the names of the columns from the table associated with `$class`,
   while the values of the array are the names of the columns from the declaring class.
   It is a good practice to define relationships based on table foreign keys.
Alexander Makarov committed
245

Qiang Xue committed
246 247
After declaring relations, getting relational data is as easy as accessing a component property
that is defined by the corresponding getter method:
Alexander Makarov committed
248 249

```php
Qiang Xue committed
250 251
// get the orders of a customer
$customer = Customer::find(1);
Alexander Makarov committed
252
$orders = $customer->orders;  // $orders is an array of Order objects
Qiang Xue committed
253 254 255
```

Behind the scene, the above code executes the following two SQL queries, one for each line of code:
Alexander Makarov committed
256

Qiang Xue committed
257 258 259
```sql
SELECT * FROM tbl_customer WHERE id=1;
SELECT * FROM tbl_order WHERE customer_id=1;
Alexander Makarov committed
260 261
```

Qiang Xue committed
262 263 264 265 266 267 268 269
> Tip: If you access the expression `$customer->orders` again, will it perform the second SQL query again?
Nope. The SQL query is only performed the first time when this expression is accessed. Any further
accesses will only return the previously fetched results that are cached internally. If you want to re-query
the relational data, simply unset the existing one first: `unset($customer->orders);`.

Sometimes, you may want to pass parameters to a relational query. For example, instead of returning
all orders of a customer, you may want to return only big orders whose subtotal exceeds a specified amount.
To do so, declare a `bigOrders` relation with the following getter method:
Alexander Makarov committed
270 271 272 273 274 275

```php
class Customer extends \yii\db\ActiveRecord
{
	public function getBigOrders($threshold = 100)
	{
276
		return $this->hasMany(Order::className(), ['customer_id' => 'id'])
Alexander Makarov committed
277
			->where('subtotal > :threshold', [':threshold' => $threshold])
Alexander Makarov committed
278 279 280 281 282
			->orderBy('id');
	}
}
```

Carsten Brandt committed
283 284
Remember that `hasMany()` returns an [[yii\db\ActiveRelation]] object which extends from [[yii\db\ActiveQuery]]
and thus supports the same set of querying methods as [[yii\db\ActiveQuery]].
Qiang Xue committed
285 286 287 288 289 290 291 292

With the above declaration, if you access `$customer->bigOrders`, it will only return the orders
whose subtotal is greater than 100. To specify a different threshold value, use the following code:

```php
$orders = $customer->getBigOrders(200)->all();
```

Qiang Xue committed
293 294
> Note: A relation method returns an instance of [[yii\db\ActiveRelation]]. If you access the relation like
an attribute, the return value will be the query result of the relation, which could be an instance of `ActiveRecord`,
Qiang Xue committed
295 296 297
an array of that, or null, depending the multiplicity of the relation. For example, `$customer->getOrders()` returns
an `ActiveRelation` instance, while `$customer->orders` returns an array of `Order` objects (or an empty array if
the query results in nothing).
Qiang Xue committed
298

Qiang Xue committed
299 300 301 302

Relations with Pivot Table
--------------------------

Alexander Makarov committed
303
Sometimes, two tables are related together via an intermediary table called
Qiang Xue committed
304
[pivot table](http://en.wikipedia.org/wiki/Pivot_table). To declare such relations, we can customize
Carsten Brandt committed
305
the [[yii\db\ActiveRelation]] object by calling its [[yii\db\ActiveRelation::via()]] or [[yii\db\ActiveRelation::viaTable()]]
Alexander Makarov committed
306 307 308 309 310 311 312 313 314 315
method.

For example, if table `tbl_order` and table `tbl_item` are related via pivot table `tbl_order_item`,
we can declare the `items` relation in the `Order` class like the following:

```php
class Order extends \yii\db\ActiveRecord
{
	public function getItems()
	{
316
		return $this->hasMany(Item::className(), ['id' => 'item_id'])
Alexander Makarov committed
317
			->viaTable('tbl_order_item', ['order_id' => 'id']);
Alexander Makarov committed
318 319 320 321
	}
}
```

Carsten Brandt committed
322 323
[[yii\db\ActiveRelation::via()]] method is similar to [[yii\db\ActiveRelation::viaTable()]] except that
the first parameter of [[yii\db\ActiveRelation::via()]] takes a relation name declared in the ActiveRecord class
Qiang Xue committed
324
instead of the pivot table name. For example, the above `items` relation can be equivalently declared as follows:
Alexander Makarov committed
325 326 327 328 329 330

```php
class Order extends \yii\db\ActiveRecord
{
	public function getOrderItems()
	{
331
		return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
Alexander Makarov committed
332 333 334 335
	}

	public function getItems()
	{
336
		return $this->hasMany(Item::className(), ['id' => 'item_id'])
Alexander Makarov committed
337 338 339 340 341 342
			->via('orderItems');
	}
}
```


Qiang Xue committed
343 344 345 346
Lazy and Eager Loading
----------------------

As described earlier, when you access the related objects the first time, ActiveRecord will perform a DB query
Alexander Makarov committed
347 348 349 350 351 352 353 354 355 356 357 358
to retrieve the corresponding data and populate it into the related objects. No query will be performed
if you access the same related objects again. We call this *lazy loading*. For example,

```php
// SQL executed: SELECT * FROM tbl_customer WHERE id=1
$customer = Customer::find(1);
// SQL executed: SELECT * FROM tbl_order WHERE customer_id=1
$orders = $customer->orders;
// no SQL executed
$orders2 = $customer->orders;
```

Qiang Xue committed
359
Lazy loading is very convenient to use. However, it may suffer from a performance issue in the following scenario:
Alexander Makarov committed
360 361 362 363 364 365 366 367 368 369 370 371 372 373

```php
// SQL executed: SELECT * FROM tbl_customer LIMIT 100
$customers = Customer::find()->limit(100)->all();

foreach ($customers as $customer) {
	// SQL executed: SELECT * FROM tbl_order WHERE customer_id=...
	$orders = $customer->orders;
	// ...handle $orders...
}
```

How many SQL queries will be performed in the above code, assuming there are more than 100 customers in
the database? 101! The first SQL query brings back 100 customers. Then for each customer, a SQL query
Qiang Xue committed
374
is performed to bring back the orders of that customer.
Alexander Makarov committed
375

Carsten Brandt committed
376
To solve the above performance problem, you can use the so-called *eager loading* approach by calling [[yii\db\ActiveQuery::with()]]:
Alexander Makarov committed
377 378

```php
Qiang Xue committed
379
// SQL executed: SELECT * FROM tbl_customer LIMIT 100;
Alexander Makarov committed
380 381 382 383 384 385 386 387 388 389 390
//               SELECT * FROM tbl_orders WHERE customer_id IN (1,2,...)
$customers = Customer::find()->limit(100)
	->with('orders')->all();

foreach ($customers as $customer) {
	// no SQL executed
	$orders = $customer->orders;
	// ...handle $orders...
}
```

Qiang Xue committed
391 392 393 394 395
As you can see, only two SQL queries are needed for the same task!

> Info: In general, if you are eager loading `N` relations among which `M` relations are defined with `via()` or `viaTable()`,
> a total number of `1+M+N` SQL queries will be performed: one query to bring back the rows for the primary table, one for
> each of the `M` pivot tables corresponding to the `via()` or `viaTable()` calls, and one for each of the `N` related tables.
Alexander Makarov committed
396 397


Qiang Xue committed
398
Sometimes, you may want to customize the relational queries on the fly. This can be
Alexander Makarov committed
399 400 401 402 403 404 405
done for both lazy loading and eager loading. For example,

```php
$customer = Customer::find(1);
// lazy loading: SELECT * FROM tbl_order WHERE customer_id=1 AND subtotal>100
$orders = $customer->getOrders()->where('subtotal>100')->all();

Алексей committed
406 407
// eager loading: SELECT * FROM tbl_customer LIMIT 100
//                SELECT * FROM tbl_order WHERE customer_id IN (1,2,...) AND subtotal>100
Alexander Makarov committed
408
$customers = Customer::find()->limit(100)->with([
Alexander Makarov committed
409 410 411
	'orders' => function($query) {
		$query->andWhere('subtotal>100');
	},
Alexander Makarov committed
412
])->all();
Alexander Makarov committed
413 414 415
```


416 417 418 419
Joining with Relations
----------------------

When working with relational databases, a common task is to join multiple tables and apply various
Carsten Brandt committed
420
query conditions and parameters to the JOIN SQL statement. Instead of calling [[yii\db\ActiveQuery::join()]]
421
explicitly to build up the JOIN query, you may reuse the existing relation definitions and call
Carsten Brandt committed
422
[[yii\db\ActiveQuery::joinWith()]] to achieve this goal. For example,
423 424

```php
425 426
// find all orders and sort the orders by the customer id and the order id. also eager loading "customer"
$orders = Order::find()->joinWith('customer')->orderBy('tbl_customer.id, tbl_order.id')->all();
427
// find all orders that contain books, and eager loading "books"
428
$orders = Order::find()->innerJoinWith('books')->all();
429 430
```

Carsten Brandt committed
431
In the above, the method [[yii\db\ActiveQuery::innerJoinWith()|innerJoinWith()]] is a shortcut to [[yii\db\ActiveQuery::joinWith()|joinWith()]]
432
with the join type set as `INNER JOIN`.
Qiang Xue committed
433

434 435
You may join with one or multiple relations; you may apply query conditions to the relations on-the-fly;
and you may also join with sub-relations. For example,
Qiang Xue committed
436 437 438 439

```php
// join with multiple relations
// find out the orders that contain books and are placed by customers who registered within the past 24 hours
440
$orders = Order::find()->innerJoinWith([
Qiang Xue committed
441 442
	'books',
	'customer' => function ($query) {
Alexander Kochetov committed
443
		$query->where('tbl_customer.created_at > ' . (time() - 24 * 3600));
Qiang Xue committed
444 445 446 447 448 449
	}
])->all();
// join with sub-relations: join with books and books' authors
$orders = Order::find()->joinWith('books.author')->all();
```

450 451 452 453
Behind the scene, Yii will first execute a JOIN SQL statement to bring back the primary models
satisfying the conditions applied to the JOIN SQL. It will then execute a query for each relation
and populate the corresponding related records.

Carsten Brandt committed
454
The difference between [[yii\db\ActiveQuery::joinWith()|joinWith()]] and [[yii\db\ActiveQuery::with()|with()]] is that
455 456 457 458 459 460 461 462
the former joins the tables for the primary model class and the related model classes to retrieve
the primary models, while the latter just queries against the table for the primary model class to
retrieve the primary models.

Because of this difference, you may apply query conditions that are only available to a JOIN SQL statement.
For example, you may filter the primary models by the conditions on the related models, like the example
above. You may also sort the primary models using columns from the related tables.

Carsten Brandt committed
463
When using [[yii\db\ActiveQuery::joinWith()|joinWith()]], you are responsible to disambiguate column names.
464 465 466
In the above examples, we use `tbl_item.id` and `tbl_order.id` to disambiguate the `id` column references
because both of the order table and the item table contain a column named `id`.

Qiang Xue committed
467 468 469
By default, when you join with a relation, the relation will also be eagerly loaded. You may change this behavior
by passing the `$eagerLoading` parameter which specifies whether to eager load the specified relations.

Carsten Brandt committed
470
And also by default, [[yii\db\ActiveQuery::joinWith()|joinWith()]] uses `LEFT JOIN` to join the related tables.
471
You may pass it with the `$joinType` parameter to customize the join type. As a shortcut to the `INNER JOIN` type,
Carsten Brandt committed
472
you may use [[yii\db\ActiveQuery::innerJoinWith()|innerJoinWith()]].
Qiang Xue committed
473 474 475 476 477

Below are some more examples,

```php
// find all orders that contain books, but do not eager loading "books".
478
$orders = Order::find()->innerJoinWith('books', false)->all();
479
// which is equivalent to the above
480
$orders = Order::find()->joinWith('books', false, 'INNER JOIN')->all();
Qiang Xue committed
481
```
482

483 484 485 486 487 488 489 490
Sometimes when joining two tables, you may need to specify some extra condition in the ON part of the JOIN query.
This can be done by calling the [[\yii\db\ActiveRelation::onCondition()]] method like the following:

```php
class User extends ActiveRecord
{
	public function getBooks()
	{
491
		return $this->hasMany(Item::className(), ['owner_id' => 'id'])->onCondition(['category_id' => 1]);
492 493 494 495 496 497 498
	}
}
```

In the above, the `hasMany()` method returns an `ActiveRelation` instance, upon which `onCondition()` is called
to specify that only items whose `category_id` is 1 should be returned.

Carsten Brandt committed
499
When you perform query using [[yii\db\ActiveQuery::joinWith()|joinWith()]], the on-condition will be put in the ON part
500 501 502 503 504
of the corresponding JOIN query. For example,

```php
// SELECT tbl_user.* FROM tbl_user LEFT JOIN tbl_item ON tbl_item.owner_id=tbl_user.id AND category_id=1
// SELECT * FROM tbl_item WHERE owner_id IN (...) AND category_id=1
505
$users = User::find()->joinWith('books')->all();
506 507
```

Carsten Brandt committed
508
Note that if you use eager loading via [[yii\db\ActiveQuery::with()]] or lazy loading, the on-condition will be put
509 510 511 512
in the WHERE part of the corresponding SQL statement, because there is no JOIN query involved. For example,

```php
// SELECT * FROM tbl_user WHERE id=10
513
$user = User::find(10);
514 515 516 517
// SELECT * FROM tbl_item WHERE owner_id=10 AND category_id=1
$books = $user->books;
```

518

Alexander Makarov committed
519 520 521 522 523 524
Working with Relationships
--------------------------

ActiveRecord provides the following two methods for establishing and breaking a
relationship between two ActiveRecord objects:

525 526
- [[yii\db\ActiveRecord::link()|link()]]
- [[yii\db\ActiveRecord::unlink()|unlink()]]
Alexander Makarov committed
527 528 529 530 531 532 533 534 535 536 537

For example, given a customer and a new order, we can use the following code to make the
order owned by the customer:

```php
$customer = Customer::find(1);
$order = new Order;
$order->subtotal = 100;
$customer->link('orders', $order);
```

538 539
The [[yii\db\ActiveRecord::link()|link()]] call above will set the `customer_id` of the order to be the primary key
value of `$customer` and then call [[yii\db\ActiveRecord::save()|save()]] to save the order into database.
Alexander Makarov committed
540 541 542 543 544 545 546 547 548 549 550 551


Life Cycles of an ActiveRecord Object
-------------------------------------

An ActiveRecord object undergoes different life cycles when it is used in different cases.
Subclasses or ActiveRecord behaviors may "inject" custom code in these life cycles through
method overriding and event handling mechanisms.

When instantiating a new ActiveRecord instance, we will have the following life cycles:

1. constructor
552
2. [[yii\db\ActiveRecord::init()|init()]]: will trigger an [[yii\db\ActiveRecord::EVENT_INIT|EVENT_INIT]] event
Alexander Makarov committed
553

554
When getting an ActiveRecord instance through the [[yii\db\ActiveRecord::find()|find()]] method, we will have the following life cycles:
Alexander Makarov committed
555 556

1. constructor
557 558
2. [[yii\db\ActiveRecord::init()|init()]]: will trigger an [[yii\db\ActiveRecord::EVENT_INIT|EVENT_INIT]] event
3. [[yii\db\ActiveRecord::afterFind()|afterFind()]]: will trigger an [[yii\db\ActiveRecord::EVENT_AFTER_FIND|EVENT_AFTER_FIND]] event
Alexander Makarov committed
559

560
When calling [[yii\db\ActiveRecord::save()|save()]] to insert or update an ActiveRecord, we will have the following life cycles:
Alexander Makarov committed
561

562 563 564
1. [[yii\db\ActiveRecord::beforeValidate()|beforeValidate()]]: will trigger an [[yii\db\ActiveRecord::EVENT_BEFORE_VALIDATE|EVENT_BEFORE_VALIDATE]] event
2. [[yii\db\ActiveRecord::afterValidate()|afterValidate()]]: will trigger an [[yii\db\ActiveRecord::EVENT_AFTER_VALIDATE|EVENT_AFTER_VALIDATE]] event
3. [[yii\db\ActiveRecord::beforeSave()|beforeSave()]]: will trigger an [[yii\db\ActiveRecord::EVENT_BEFORE_INSERT|EVENT_BEFORE_INSERT]] or [[yii\db\ActiveRecord::EVENT_BEFORE_UPDATE|EVENT_BEFORE_UPDATE]] event
Alexander Makarov committed
565
4. perform the actual data insertion or updating
566
5. [[yii\db\ActiveRecord::afterSave()|afterSave()]]: will trigger an [[yii\db\ActiveRecord::EVENT_AFTER_INSERT|EVENT_AFTER_INSERT]] or [[yii\db\ActiveRecord::EVENT_AFTER_UPDATE|EVENT_AFTER_UPDATE]] event
Alexander Makarov committed
567

568
Finally when calling [[yii\db\ActiveRecord::delete()|delete()]] to delete an ActiveRecord, we will have the following life cycles:
Alexander Makarov committed
569

570
1. [[yii\db\ActiveRecord::beforeDelete()|beforeDelete()]]: will trigger an [[yii\db\ActiveRecord::EVENT_BEFORE_DELETE|EVENT_BEFORE_DELETE]] event
Alexander Makarov committed
571
2. perform the actual data deletion
572
3. [[yii\db\ActiveRecord::afterDelete()|afterDelete()]]: will trigger an [[yii\db\ActiveRecord::EVENT_AFTER_DELETE|EVENT_AFTER_DELETE]] event
Alexander Makarov committed
573 574


Qiang Xue committed
575 576
Scopes
------
Alexander Makarov committed
577

Qiang Xue committed
578 579
When [[yii\db\ActiveRecord::find()|find()]] or [[yii\db\ActiveRecord::findBySql()|findBySql()]], it returns an [[yii\db\ActiveRecord::yii\db\ActiveQuery|yii\db\ActiveQuery]]
instance. You may call additional query methods, such as `where()`, `orderBy()`, to further specify the query conditions, etc.
580

Qiang Xue committed
581 582 583 584 585 586 587
It is possible that you may want to call the same set of query methods in different places. If this is the case,
you should consider defining the so-called *scopes*. A scope is essentially a method defined in a custom query class that
calls a set of query methods to modify the query object. You can then use a scope like calling a normal query method.

Two steps are required to define a scope. First create a custom query class for your model and define the needed scope
methods in this class. For example, create a `CommentQuery` class for the `Comment` model and define the `active()`
scope method like the following:
Alexander Makarov committed
588 589

```php
590 591
namespace app\models;

592
use yii\db\ActiveQuery;
593 594

class CommentQuery extends ActiveQuery
Alexander Makarov committed
595
{
596 597 598 599 600 601 602
	public function active($state = true)
	{
		$this->andWhere(['active' => $state]);
		return $this;
	}
}
```
Alexander Makarov committed
603

604 605 606 607 608 609
Important points are:

1. Class should extend from `yii\db\ActiveQuery` (or another `ActiveQuery` such as `yii\mongodb\ActiveQuery`).
2. A method should be `public` and should return `$this` in order to allow method chaining. It may accept parameters.
3. Check `ActiveQuery` methods that are very useful for modifying query conditions.

Qiang Xue committed
610 611
Second, override `ActiveRecord::createQuery()` to use the custom query class instead of the regular `ActiveQuery`.
For the example above, you need to write the following code:
612 613 614 615 616 617 618 619 620

```
namespace app\models;

use yii\db\ActiveRecord;

class Comment extends ActiveRecord
{
	public static function createQuery()
Alexander Makarov committed
621
	{
622
		return new CommentQuery(['modelClass' => get_called_class()]);
Alexander Makarov committed
623 624
	}
}
625
```
Alexander Makarov committed
626

627 628 629
That's it. Now you can use your custom scope methods:

```php
630
$comments = Comment::find()->active()->all();
631
$inactiveComments = Comment::find()->active(false)->all();
632 633 634 635 636 637 638 639 640 641 642 643 644
```

You can also use scopes when defining relations. For example,

```php
class Post extends \yii\db\ActiveRecord
{
	public function getComments()
	{
		return $this->hasMany(Comment::className(), ['post_id' => 'id'])->active();

	}
}
Alexander Makarov committed
645 646
```

647 648 649 650 651 652 653 654 655
Or use the scopes on-the-fly when performing relational query:

```php
$posts = Post::find()->with([
	'comments' => function($q) {
		$q->active();
	}
])->all();
```
Alexander Makarov committed
656

Qiang Xue committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
### Default Scope

If you used Yii 1.1 before, you may know a concept called *default scope*. A default scope is a scope that
applies to ALL queries. You can define a default scope easily by overriding `ActiveRecord::createQuery()`. For example,

```php
public static function createQuery()
{
	$query = new CommentQuery(['modelClass' => get_called_class()]);
	$query->where(['deleted' => false]);
	return $query;
}
```


672 673
### Making it IDE-friendly

674 675
In order to make most modern IDE autocomplete happy you need to override return types for some methods of both model
and query like the following:
Alexander Makarov committed
676 677

```php
678 679 680 681 682
/**
 * @method \app\models\CommentQuery|static|null find($q = null) static
 * @method \app\models\CommentQuery findBySql($sql, $params = []) static
 */
class Comment extends ActiveRecord
Alexander Makarov committed
683
{
684
	// ...
Alexander Makarov committed
685 686 687
}
```

688
```php
689 690 691 692 693
/**
 * @method \app\models\Comment|array|null one($db = null)
 * @method \app\models\Comment[]|array all($db = null)
 */
class CommentQuery extends ActiveQuery
694
{
695
	// ...
696 697 698
}
```

Qiang Xue committed
699 700 701 702 703
Transactional operations
------------------------


When a few DB operations are related and are executed
Alexander Makarov committed
704

705 706
TODO: FIXME: WIP, TBD, https://github.com/yiisoft/yii2/issues/226

Qiang Xue committed
707
,
708 709
[[yii\db\ActiveRecord::afterSave()|afterSave()]], [[yii\db\ActiveRecord::beforeDelete()|beforeDelete()]] and/or [[yii\db\ActiveRecord::afterDelete()|afterDelete()]] life cycle methods. Developer may come
to the solution of overriding ActiveRecord [[yii\db\ActiveRecord::save()|save()]] method with database transaction wrapping or
710 711
even using transaction in controller action, which is strictly speaking doesn't seem to be a good
practice (recall "skinny-controller / fat-model" fundamental rule).
712

713
Here these ways are (**DO NOT** use them unless you're sure what you are actually doing). Models:
714 715 716 717 718 719 720 721

```php
class Feature extends \yii\db\ActiveRecord
{
	// ...

	public function getProduct()
	{
722
		return $this->hasOne(Product::className(), ['product_id' => 'id']);
723 724 725 726 727 728 729 730 731
	}
}

class Product extends \yii\db\ActiveRecord
{
	// ...

	public function getFeatures()
	{
732
		return $this->hasMany(Feature::className(), ['id' => 'product_id']);
733 734 735 736
	}
}
```

737
Overriding [[yii\db\ActiveRecord::save()|save()]] method:
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770

```php

class ProductController extends \yii\web\Controller
{
	public function actionCreate()
	{
		// FIXME: TODO: WIP, TBD
	}
}
```

Using transactions within controller layer:

```php
class ProductController extends \yii\web\Controller
{
	public function actionCreate()
	{
		// FIXME: TODO: WIP, TBD
	}
}
```

Instead of using these fragile methods you should consider using atomic scenarios and operations feature.

```php
class Feature extends \yii\db\ActiveRecord
{
	// ...

	public function getProduct()
	{
771
		return $this->hasOne(Product::className(), ['product_id' => 'id']);
772 773 774 775
	}

	public function scenarios()
	{
Alexander Makarov committed
776 777 778 779 780 781
		return [
			'userCreates' => [
				'attributes' => ['name', 'value'],
				'atomic' => [self::OP_INSERT],
			],
		];
782 783 784 785 786 787 788 789 790
	}
}

class Product extends \yii\db\ActiveRecord
{
	// ...

	public function getFeatures()
	{
791
		return $this->hasMany(Feature::className(), ['id' => 'product_id']);
792 793 794 795
	}

	public function scenarios()
	{
Alexander Makarov committed
796 797 798 799 800 801
		return [
			'userCreates' => [
				'attributes' => ['title', 'price'],
				'atomic' => [self::OP_INSERT],
			],
		];
802 803 804 805 806 807 808 809 810 811
	}

	public function afterValidate()
	{
		parent::afterValidate();
		// FIXME: TODO: WIP, TBD
	}

	public function afterSave($insert)
	{
812
		parent::afterSave($insert);
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
		if ($this->getScenario() === 'userCreates') {
			// FIXME: TODO: WIP, TBD
		}
	}
}
```

Controller is very thin and neat:

```php
class ProductController extends \yii\web\Controller
{
	public function actionCreate()
	{
		// FIXME: TODO: WIP, TBD
	}
}
```
Alexander Makarov committed
831

Qiang Xue committed
832 833 834 835 836 837 838 839 840 841
Optimistic Locks
----------------

TODO

Dirty Attributes
----------------

TODO

Alexander Makarov committed
842 843 844 845
See also
--------

- [Model](model.md)
846
- [[\yii\db\ActiveRecord]]