View Source
Class ColumnInfo
Assembly: Umbraco.Infrastructure.dll
Syntax
Constructors
View Source
ColumnInfo(string, string, int, bool, string)
Declaration
public ColumnInfo(string tableName, string columnName, int ordinal, bool isNullable, string dataType)
Parameters
| Type |
Name |
Description |
| string |
tableName |
|
| string |
columnName |
|
| int |
ordinal |
|
| bool |
isNullable |
|
| string |
dataType |
|
View Source
ColumnInfo(string, string, int, string, string)
Declaration
public ColumnInfo(string tableName, string columnName, int ordinal, string isNullable, string dataType)
Parameters
| Type |
Name |
Description |
| string |
tableName |
|
| string |
columnName |
|
| int |
ordinal |
|
| string |
isNullable |
|
| string |
dataType |
|
View Source
ColumnInfo(string, string, int, string, string, string)
Declaration
public ColumnInfo(string tableName, string columnName, int ordinal, string columnDefault, string isNullable, string dataType)
Parameters
| Type |
Name |
Description |
| string |
tableName |
|
| string |
columnName |
|
| int |
ordinal |
|
| string |
columnDefault |
|
| string |
isNullable |
|
| string |
dataType |
|
Properties
View Source
ColumnDefault
Declaration
public string? ColumnDefault { get; set; }
Property Value
View Source
ColumnName
Declaration
public string ColumnName { get; set; }
Property Value
View Source
DataType
Declaration
public string DataType { get; set; }
Property Value
View Source
IsNullable
Declaration
public bool IsNullable { get; set; }
Property Value
View Source
Ordinal
Declaration
public int Ordinal { get; set; }
Property Value
View Source
TableName
Declaration
public string TableName { get; set; }
Property Value