Class DbColumn
Represents a database column.
Inheritance
System.Object
DbColumn
Namespace: Cuemon.Data
Assembly: Cuemon.Data.dll
Syntax
public sealed class DbColumn
Constructors
| Improve this DocDbColumn(DbType, Object)
Initializes a new instance of the DbColumn class.
Declaration
public DbColumn(DbType columnDbType, object columnValue)
Parameters
Type | Name | Description |
---|---|---|
System.Data.DbType | columnDbType | The System.Data.DbType of the database column. |
System.Object | columnValue | The value of the database column. |
Properties
| Improve this DocColumnDbType
Gets the System.Data.DbType of the database column.
Declaration
public DbType ColumnDbType { get; }
Property Value
Type | Description |
---|---|
System.Data.DbType | The System.Data.DbType of the database column. |
ColumnType
Gets the System.Type of the database column.
Declaration
public Type ColumnType { get; }
Property Value
Type | Description |
---|---|
System.Type | The System.Type of the database column. |
ColumnValue
Gets the database column value.
Declaration
public object ColumnValue { get; }
Property Value
Type | Description |
---|---|
System.Object |