Class DataTypeManager
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Provides management of SQL data types
public class DataTypeManager
- Inheritance
-
objectDataTypeManager
- Extension Methods
Fields
CODE_VALUE_FORMAT_STRING
Represents the format string for a string value in C# code
public const string CODE_VALUE_FORMAT_STRING = "\"{0}\""
Field Value
- string
MAX_DATETIME
Minimum DateTime value for date time data type
public static readonly DateTime MAX_DATETIME
Field Value
- DateTime
MIN_DATETIME
Minimum DateTime value for date time data type
public static readonly DateTime MIN_DATETIME
Field Value
- DateTime
PLAIN
Represents the format string for a plain SQL value
public const string PLAIN = "{0}"
Field Value
- string
UNICODE
Represents the format string for a unicode text on SQL server
public const string UNICODE = "N'{0}'"
Field Value
- string
Properties
DataTypes
Registered data types
public static IEnumerable<DataType> DataTypes { get; }
Property Value
- IEnumerable<DataType>
FieldTypes
Registered data types
[Obsolete("Member is deprecated and will be removed in next version.")]
[ObsoleteSince(28, 0)]
public static IEnumerable<string> FieldTypes { get; }
Property Value
- IEnumerable<string>
VisibleFieldTypes
Registered data types
[Obsolete("Member is deprecated and will be removed in next version.")]
[ObsoleteSince(28, 0)]
public static IEnumerable<string> VisibleFieldTypes { get; }
Property Value
- IEnumerable<string>
Methods
ConvertToSystemType(TypeEnum, string, object, CultureInfo, bool)
Converts the value to a proper data type
public static object ConvertToSystemType(TypeEnum typeEnum, string typeValue, object value, CultureInfo culture = null, bool nullIfDefault = false)
Parameters
typeEnum
TypeEnumType to use
typeValue
stringData type
value
objectValue to convert
culture
CultureInfoCulture to use for conversion
nullIfDefault
boolIf true, and the resulting value is the default value, returns null
Returns
- object
GetDataType(TypeEnum, string)
Gets the data type settings by its SQL type
public static DataType GetDataType(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType to use
typeValue
stringData type name
Returns
GetDataType(Type)
Gets the data type by the system type.
public static DataType GetDataType(Type type)
Parameters
type
TypeSystem type
Returns
- See Also
-
IsAssignableFrom(Type)
GetDataTypes(Func<DataType, bool>)
Gets the data types matching the given condition
public static IEnumerable<DataType> GetDataTypes(Func<DataType, bool> condition = null)
Parameters
condition
Func<DataType, bool>Data type condition
Returns
- IEnumerable<DataType>
GetFieldType(string, int, bool)
Returns form field data type from database column data type. Some sql types map to multiple field types that differ by size, e.g. nvarchar has more field data types that differ by size. Specify size to get more accurate result. By default max size for given sql type is used.
public static string GetFieldType(string sqlType, int size = -1, bool throwException = false)
Parameters
sqlType
stringDatabase column data type
size
intSpecify the size of sql type to get accurate result
throwException
boolIndicates if exception should be thrown for unsupported SQL data type
Returns
- string
GetFieldTypes(DataClassInfo, bool)
Returns collection of all field types for the given data class.
public static IEnumerable<string> GetFieldTypes(DataClassInfo dataClassInfo = null, bool onlyVisible = true)
Parameters
dataClassInfo
DataClassInfoDataClassInfo, if not specified, all field types are returned.
onlyVisible
boolIf true, only visible field types are provided.
Returns
- IEnumerable<string>
GetSqlType(string, int, int)
Gets column type for defined data type and size.
public static string GetSqlType(string dataType, int size, int precision)
Parameters
dataType
stringData type
size
intSize of the type
precision
intPrecision of the type
Returns
- string
GetSqlValue(object)
Gets the value representation for a SQL query text.
public static string GetSqlValue(object value)
Parameters
value
objectValue to be converted.
Returns
- string
GetStringValue(TypeEnum, string, object, CultureInfo)
Converts the value to a string value
public static string GetStringValue(TypeEnum typeEnum, string typeValue, object value, CultureInfo culture = null)
Parameters
typeEnum
TypeEnumType to use
typeValue
stringData type
value
objectValue to convert
culture
CultureInfoCulture to use for conversion
Returns
- string
GetSystemType(TypeEnum, string)
Gets the system type by the field type
public static Type GetSystemType(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType to search
typeValue
stringField type
Returns
- Type
IsInteger(TypeEnum, string)
Returns true, if the given type is an integer type
public static bool IsInteger(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType enum
typeValue
stringType value
Returns
- bool
IsNumber(TypeEnum, string)
Returns true, if the given type is a number type
public static bool IsNumber(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType enum
typeValue
stringType value
Returns
- bool
IsString(TypeEnum, string)
Returns true, if the given type is a string type
public static bool IsString(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType enum
typeValue
stringType value
Returns
- bool
IsType<T>(TypeEnum, string)
Returns true, if the given type is a GUID type
public static bool IsType<T>(TypeEnum typeEnum, string typeValue)
Parameters
typeEnum
TypeEnumType enum
typeValue
stringType value
Returns
- bool
Type Parameters
T
RegisterDataTypes(params DataType[])
Registers the given data type to the system
public static void RegisterDataTypes(params DataType[] types)
Parameters
types
DataType[]