Adf.Base.Data.ColumnDescriber.ColumnDescriber C# (CSharp) Method

ColumnDescriber() public method

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
return System
        public ColumnDescriber(string attribute, ITable table, string column = null, bool isIdentity = false, bool isAutoIncrement = false, bool isTimestamp = false)
        {
            _attribute = attribute;
            _columnName = column ?? attribute;
            _table = table;
            _isIdentity = isIdentity;
            _isAutoIncrement = isAutoIncrement;
            _isTimestamp = isTimestamp;
            _hashCode = _columnName.ToLower().GetHashCode();    // memory optimization
        }

Same methods

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