Skip to content

Instantly share code, notes, and snippets.

@akanehara
Created April 14, 2014 10:16
Show Gist options
  • Select an option

  • Save akanehara/10635054 to your computer and use it in GitHub Desktop.

Select an option

Save akanehara/10635054 to your computer and use it in GitHub Desktop.
Yii AR - derived property
<?php
class Foo extends CActiveRecord
{
$public $derived;
public function beforeFind()
{
$this->dbCriteria->select = 'col1, col2, col3, deriving(col2) AS derived';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment