parent-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에서 parent-column을 얻음.
	var childColumn = it.get("child-parent");
});
Foreign key, which defines the relationship, is composed of column-references containing parent column and child column respectively. This attribute obtains these column references from FK and uses them to get the parent column.
var fk = ...;

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

값 얻기

Getter

외래키(foreign-key)의 구성요소 컬럼 참조(column-reference)에서 부모 컬럼을 얻습니다.

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

외래키(foreign-key)의 구성요소 컬럼 참조(column-reference)에서 부모 컬럼을 얻습니다.

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

값 지정

Setter

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