C# Class Adf.Base.Data.ColumnDescriber

Inheritance: IColumn
Afficher le fichier Open project: NLADP/ADF Class Usage Examples

Méthodes publiques

Méthode Description
ColumnDescriber ( string attribute, ITable table, string column = null, bool isIdentity = false, bool isAutoIncrement = false, bool isTimestamp = false ) : System

Initializes a new instance of the ColumnDescriber class with the specified column's attribute, name and table of ITable.

ColumnDescriber ( string attribute, string table, string column = null ) : System

Initializes a new instance of the ColumnDescriber class with the specified column's attribute, name and table name.

Equals ( object obj ) : bool
GetHashCode ( ) : int
ToString ( ) : string

Returns the columns attribute.

Method Details

ColumnDescriber() public méthode

Initializes a new instance of the ColumnDescriber class with the specified column's attribute, name and table of ITable.
public ColumnDescriber ( string attribute, ITable table, string column = null, bool isIdentity = false, bool isAutoIncrement = false, bool isTimestamp = false ) : System
attribute string The attribute which contains the datatype, length etc.
table ITable The which contains the table name.
column string Column name of a table.
isIdentity bool
isAutoIncrement bool
isTimestamp bool
Résultat System

ColumnDescriber() public méthode

Initializes a new instance of the ColumnDescriber class with the specified column's attribute, name and table name.
public ColumnDescriber ( string attribute, string table, string column = null ) : System
attribute string The attribute which contains the datatype, length etc.
table string The table name.
column string Column name of a table.
Résultat System

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

ToString() public méthode

Returns the columns attribute.
public ToString ( ) : string
Résultat string