Class ColumnDefinition
Inheritance
System.Object
Assembly: cs.temp.dll.dll
Syntax
public class ColumnDefinition
Properties
ConstraintName
Declaration
public virtual string ConstraintName { get; set; }
Property Value
Type |
Description |
System.String |
|
CustomDbType
Used for column types that cannot be natively mapped.
Declaration
public SpecialDbType? CustomDbType { get; set; }
Property Value
Type |
Description |
System.Nullable<SpecialDbType> |
|
CustomType
Declaration
public virtual string CustomType { get; set; }
Property Value
Type |
Description |
System.String |
|
DefaultValue
Declaration
public virtual object DefaultValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
IsForeignKey
Declaration
public virtual bool IsForeignKey { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsIdentity
Declaration
public virtual bool IsIdentity { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsIndexed
Declaration
public virtual bool IsIndexed { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsNullable
Declaration
public virtual bool IsNullable { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsPrimaryKey
Declaration
public virtual bool IsPrimaryKey { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsUnique
Declaration
public virtual bool IsUnique { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ModificationType
Declaration
public virtual ModificationType ModificationType { get; set; }
Property Value
Name
Declaration
public virtual string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
Precision
Declaration
public virtual int Precision { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
PrimaryKeyColumns
Declaration
public virtual string PrimaryKeyColumns { get; set; }
Property Value
Type |
Description |
System.String |
|
PrimaryKeyName
Declaration
public virtual string PrimaryKeyName { get; set; }
Property Value
Type |
Description |
System.String |
|
PropertyType
Declaration
public Type PropertyType { get; set; }
Property Value
Type |
Description |
System.Type |
|
Seeding
Declaration
public virtual int Seeding { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Size
Declaration
public virtual int Size { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
TableName
Declaration
public virtual string TableName { get; set; }
Property Value
Type |
Description |
System.String |
|
Type
Declaration
public virtual DbType? Type { get; set; }
Property Value
Type |
Description |
System.Nullable<DbType> |
|