domain (Domain)

도메인(domain)은 eXERD에서 컬럼의 데이터 타입을 논리적으로 추상화 한 객체 입니다. 도메인들은 도메인 뷰에서 확인 할 수 있습니다.

해당 도메인이 자식 도메인을 가진 경우 스텝-인 탐색을 이용할 수 있습니다:

// 특정 도메인을 담은 모델 컨텍스트
var domainCtx = ...;

domainCtx.select(function(it){
	return it.get("type" == "domain");
});

Domain is an object that logically abstracts the data types of the columns in the eXERD. Domain can be viewed in the domain view.

If a domain has a child domain, you can utilize step-in navigation.

// Context of the model that contain a particular domain
var domainCtx = ...;

domainCtx.select(function(it){
	return it.get("type" == "domain");
});

지원 속성

Supported Types