child-column

속성 타입 : ModelContext, 읽기 전용

Attribute Type : ModelContext, ReadOnly

지원 타입 : column-reference

Supported Type : column-reference

관계를 정의하는 외래키(foreign-key)는 각각 부모 컬럼과 자식 컬럼을 담고 있는 컬럼 참조(column-reference)들로 구성 됩니다. 이 속성은 외래키로 부터 이런 컬럼 참조들을 얻어, 이로부터 자식 컬럼을 얻을 때 이용됩니다.
var fk = ...;

fk.select(function(it){
	// fk 안에서 모든 column-reference 들을 얻음.
	return it.get("type") == "column-reference";
}).each(function(it){
	// 각 column-reference에서 child-column을 얻음.
	var childColumn = it.get("child-column");
});
Foreign-keys are compsed of parent columns and column-references that contain child columns. This attribute is used when obtaining child-columns from column-references that came from the foreign-key.
var fk = ...;

fk.select(function(it){
	// Get all the column-reference in fk.
	return it.get("type") == "column-reference";
}).each(function(it){
	// Get the child-column each in column-reference.
	var childColumn = it.get("child-column");
});

값 얻기

Getter

외래키(foreign-key)를 구성하는 컬럼 참조(column-reference)로 부터 자식 컬럼(column)을 얻습니다.

Gets the child column from column-reference that makes up the foreign key.

외래키(foreign-key)를 구성하는 컬럼 참조(column-reference)로 부터 자식 컬럼(column)을 얻습니다.

Gets the child column from column-reference that makes up the foreign key.

값 지정

Setter

이 속성은 읽기 전용으로 값을 지정할 수 없습니다.
This attribute is read-only, and you cannot specify a value.