C# 클래스 Azavea.Open.DAO.ClassMapIDColDefinition

Extends ClassMapColDefinition, and adds properties needed to define an ID column.
상속: ClassMapColDefinition
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
Generator bool
Sequence string

공개 메소드들

메소드 설명
ClassMapIDColDefinition ( string name, string column, string type, bool generator, string sequence ) : System

Constructor to populate all the needed properties.

메소드 상세

ClassMapIDColDefinition() 공개 메소드

Constructor to populate all the needed properties.
public ClassMapIDColDefinition ( string name, string column, string type, bool generator, string sequence ) : System
name string The object property name.
column string The data source column name.
type string The data type (optional).
generator bool Whether or not the data source will use a generator to make Auto-IDs.
sequence string The sequence name, if one is used to generate the Auto-ID.
리턴 System

프로퍼티 상세

Generator 공개적으로 프로퍼티

Whether or not the data source will use a generator to make Auto-IDs
public bool Generator
리턴 bool

Sequence 공개적으로 프로퍼티

The sequence name, if one is used to generate the Auto-ID
public string Sequence
리턴 string