Click or drag to resize
NETToDBTypeConversion Constructor (Type, FuncInt32, Boolean, FuncInt32, Boolean, FuncInt32, Boolean, Int32, Int32, Int32, Int32)
Initializes a new instance of the NETToDBTypeConversion class.

Namespace:  SD.LLBLGen.Pro.DBDriverCore
Assembly:  SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public NETToDBTypeConversion(
	Type netType,
	Func<int, bool> lengthFilter,
	Func<int, bool> precisionFilter,
	Func<int, bool> scaleFilter,
	int dbType,
	int lengthOverride,
	int precisionOverride,
	int scaleOverride
)

Parameters

netType
Type: SystemType
The .NET type.
lengthFilter
Type: SystemFuncInt32, Boolean
The length filter.
precisionFilter
Type: SystemFuncInt32, Boolean
The precision filter.
scaleFilter
Type: SystemFuncInt32, Boolean
The scale filter.
dbType
Type: SystemInt32
DB type
lengthOverride
Type: SystemInt32
The length override. Specify -1 to ignore
precisionOverride
Type: SystemInt32
The precision override. Specify -1 to ignore
scaleOverride
Type: SystemInt32
The scale override. Specify -1 to ignore
See Also