C# Class Azavea.Open.DAO.ClassMapIDColDefinition

Extends ClassMapColDefinition, and adds properties needed to define an ID column.
Inheritance: ClassMapColDefinition
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Свойство Type Description
Generator bool
Sequence string

Méthodes publiques

Méthode Description
ClassMapIDColDefinition ( string name, string column, string type, bool generator, string sequence ) : System

Constructor to populate all the needed properties.

Method Details

ClassMapIDColDefinition() public méthode

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.
Résultat System

Property Details

Generator public_oe property

Whether or not the data source will use a generator to make Auto-IDs
public bool Generator
Résultat bool

Sequence public_oe property

The sequence name, if one is used to generate the Auto-ID
public string Sequence
Résultat string