Class SqlType
The class represents a database data type
Inheritance
System.Object
SqlType
Assembly: Albatross.Database.dll
Syntax
public class SqlType : IEquatable<SqlType>
Properties
|
Improve this Doc
View Source
IsNullable
Declaration
public bool IsNullable { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
IsTableType
Declaration
public bool IsTableType { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
IsUserDefined
Declaration
public bool IsUserDefined { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
MaxLength
Declaration
public int? MaxLength { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
Name
Declaration
public string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Precision
Declaration
public int? Precision { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
Scale
Declaration
public int? Scale { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
Schema
Declaration
public string Schema { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
Equals(SqlType)
Declaration
public bool Equals(SqlType other)
Parameters
Type |
Name |
Description |
SqlType |
other |
|
Returns
Type |
Description |
System.Boolean |
|
Implements
System.IEquatable<T>