leftJoin() public method

The foreign table may be absent and will not be automatically deleted.
public leftJoin ( $foreign_table, $master_field = null, $join_kind = null, $_foreign_alias = null, $relation = null )
示例#1
0
文件: Relation.php 项目: atk4/atk4
 public function leftJoin($foreign_table, $master_field = null, $join_kind = null, $_foreign_alias = null)
 {
     return $this->owner->leftJoin($foreign_table, $master_field, $join_kind, $_foreign_alias, $this);
 }