C# Класс Azavea.Open.DAO.ClassMapIDColDefinition

Extends ClassMapColDefinition, and adds properties needed to define an ID column.
Наследование: ClassMapColDefinition
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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