Azavea.Open.DAO.ClassMapIDColDefinition.ClassMapIDColDefinition C# (CSharp) Method

ClassMapIDColDefinition() public method

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.
return System
        public ClassMapIDColDefinition(string name, string column, string type, bool generator, string sequence)
            : base(name, column, type)
        {
            Generator = generator;
            Sequence = sequence;
        }
ClassMapIDColDefinition