包 | system.db.ar |
---|---|
继承 | class CBelongsToRelation » CActiveRelation » CBaseActiveRelation » CComponent |
源自 | 1.0 |
版本 | $Id: CActiveRecord.php 3533 2012-01-08 22:07:55Z mdomba $ |
源码 |
CBelongsToRelation表示此参数指定一个 BELONGS_TO 关系。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
alias | string | 这个关系所指的表的别名。默认为null, 意味着此别名将和此关系名一样。 | CActiveRelation |
className | string | 相关的活动记录类的名字 | CBaseActiveRelation |
condition | string | WHERE 子句。如CActiveRelation这个继承类, 关联到条件里面的字段名字应该以前缀 'relationName' 来防止歧义。 | CBaseActiveRelation |
foreignKey | mixed | 关系中的外键 | CBaseActiveRelation |
group | string | GROUP BY 子句。如CActiveRelation这个继承类, 关联到条件里面的字段名字应该以前缀 'relationName' 来防止歧义. | CBaseActiveRelation |
having | string | HAVING 子句。为CActiveRelation子类, 在此属性中引用的列名称应该以前缀 'relationName' 来防止歧义。 | CBaseActiveRelation |
join | string | 怎样跟其它数据表关联。这个跟在 SQL 语句中 JOIN 条款相同。
比如,'LEFT JOIN users ON users.
|
CBaseActiveRelation |
joinType | string | 连接类型。默认值为‘LEFT OUTER JOIN’。 | CActiveRelation |
name | string | 相关对象的名字 | CBaseActiveRelation |
on | string | ON 子句. | CActiveRelation |
order | string | ORDER BY 子句。为CActiveRelation子类, 在此属性中引用的列名称应该以前缀 'relationName' 来防止歧义。 | CBaseActiveRelation |
params | array | 条件中的约束数据。 键名是参数的占位符名字,值是参数值。 | CBaseActiveRelation |
scopes | mixed | 要应用的范围
可以设置为下列值之一:
|
CActiveRelation |
select | mixed | 要查询的字段名字。(数组或者是名字以逗号分隔的字符串)。 不要转义或者是添加前缀到这个字段名字,除非它们需要在表达式里面用到。 这种情况下,你应该以‘relationName’作为字段前缀。 | CBaseActiveRelation |
together | boolean | 是否应将此表与主表联接。 当这个属性设置为false时,和这个关系关联的表将出现在 一个单独的JOIN语句中。 如果这个属性被设置为true,相应的表总是主表连接在一起, 不管是主表被限制或没有。 如果这个属性没有设置,相应的表仅和主表连接 仅当主表不被限制时。 | CActiveRelation |
with | string|array | 指定相关的对象应该被急切的加载当这个关联对象被懒加载时。 更多关于这个属性的信息,参见CActiveRecord::with()。 | CActiveRelation |