C# Class WebApplications.Utilities.Database.Schema.DatabaseSchema.TableDefinitionData

Holds data for a table definition as it's read.
Exibir arquivo Open project: webappsuk/CoreLibraries

Public Properties

Property Type Description
SchemaID int
Type SqlObjectType

Public Methods

Method Description
TableDefinitionData ( SqlObjectType type, int schemaID, [ name, int ordinal, [ columnName, [ columnType, SqlTypeSize columnSize, bool isNullable, int tableTypeID ) : System

Initializes a new instance of the TableDefinitionData class.

ToString ( ) : string

Returns a System.String that represents this instance.

Method Details

TableDefinitionData() public method

Initializes a new instance of the TableDefinitionData class.
public TableDefinitionData ( SqlObjectType type, int schemaID, [ name, int ordinal, [ columnName, [ columnType, SqlTypeSize columnSize, bool isNullable, int tableTypeID ) : System
type SqlObjectType The type.
schemaID int The schema identifier.
name [ The name.
ordinal int The ordinal.
columnName [ Name of the column.
columnType [ Type of the column.
columnSize SqlTypeSize Size of the column.
isNullable bool if set to [is nullable].
tableTypeID int The ID of the associated if this table defines a .
return System

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

Property Details

SchemaID public_oe property

public int SchemaID
return int

Type public_oe property

public SqlObjectType Type
return SqlObjectType