Class SqlColumn
- Namespace
- Dynamicweb.DataIntegration.ProviderHelpers
- Assembly
- Dynamicweb.DataIntegration.dll
public class SqlColumn : Column
- Inheritance
-
SqlColumn
- Inherited Members
- Extension Methods
Constructors
SqlColumn()
protected SqlColumn()
SqlColumn(string, string, Table, int, bool, bool)
public SqlColumn(string name, string columnType, Table table, int limit, bool isIdentity, bool isPrimaryKey)
Parameters
SqlColumn(string, Type, SqlDbType, Table, int, bool, bool, bool)
public SqlColumn(string name, Type columnType, SqlDbType sqlDbType, Table table, int limit, bool isIdentity, bool isPrimaryKey, bool isNew)
Parameters
name
stringcolumnType
TypesqlDbType
SqlDbTypetable
Tablelimit
intisIdentity
boolisPrimaryKey
boolisNew
bool
SqlColumn(XmlNode, Table)
public SqlColumn(XmlNode node, Table table)
Parameters
Fields
Limit
public int Limit
Field Value
Properties
IsIdentity
public bool IsIdentity { get; protected set; }
Property Value
SqlDbType
public SqlDbType SqlDbType { get; }
Property Value
Methods
SaveAsXml(XmlTextWriter)
Saves as XML. Used when saving the schema to XML file. Must match the constructor that take an XmlNode as an argument.
public override void SaveAsXml(XmlTextWriter xmlTextWriter)
Parameters
xmlTextWriter
XmlTextWriterThe XML text writer.