示例#1
0
文件: HasOne.php 项目: nextras/orm
 protected function getPrimaryValue()
 {
     if (!$this->primaryValue && $this->value && $this->value->isPersisted()) {
         $this->primaryValue = $this->value->getValue('id');
     }
     return $this->primaryValue;
 }