| NETToDBTypeConversion Constructor (Type, FuncInt32, Boolean, FuncInt32, Boolean, FuncInt32, Boolean, Int32, Int32, Int32, Int32) | 
 
Namespace: SD.LLBLGen.Pro.DBDriverCoreAssembly: SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.0.0.0 (5.0.0)
Syntaxpublic NETToDBTypeConversion(
	Type netType,
	Func<int, bool> lengthFilter,
	Func<int, bool> precisionFilter,
	Func<int, bool> scaleFilter,
	int dbType,
	int lengthOverride,
	int precisionOverride,
	int scaleOverride
)
Public Sub New ( 
	netType As Type,
	lengthFilter As Func(Of Integer, Boolean),
	precisionFilter As Func(Of Integer, Boolean),
	scaleFilter As Func(Of Integer, Boolean),
	dbType As Integer,
	lengthOverride As Integer,
	precisionOverride As Integer,
	scaleOverride As Integer
)
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