Click or drag to resize

NETToDBTypeConversion Constructor (Type, Func<Int32, Boolean>, Func<Int32, Boolean>, Func<Int32, 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.10.0.0 (5.10.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: System.Type
The .NET type.
lengthFilter
Type: System.Func<Int32, Boolean>
The length filter.
precisionFilter
Type: System.Func<Int32, Boolean>
The precision filter.
scaleFilter
Type: System.Func<Int32, Boolean>
The scale filter.
dbType
Type: System.Int32
DB type
lengthOverride
Type: System.Int32
The length override. Specify -1 to ignore
precisionOverride
Type: System.Int32
The precision override. Specify -1 to ignore
scaleOverride
Type: System.Int32
The scale override. Specify -1 to ignore
See Also