DBDriverBaseUpdateSortOrderPerDBType Method |
Resets the SortOrderPerDBType data-structure and updates the order with the setting values specified.
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public void UpdateSortOrderPerDBType(
bool preferVariableLengthTypes,
bool preferNationalCharacterTypes,
bool preferDecimalOverCurrencyTypes
)
Public Sub UpdateSortOrderPerDBType (
preferVariableLengthTypes As Boolean,
preferNationalCharacterTypes As Boolean,
preferDecimalOverCurrencyTypes As Boolean
)
Parameters
- preferVariableLengthTypes
- Type: SystemBoolean
if set to true, variable length types have to be sorted before fixed length types for the same .NET type - preferNationalCharacterTypes
- Type: SystemBoolean
if set to true, natural character types have to be sorted before normal character types for the same .NET type - preferDecimalOverCurrencyTypes
- Type: SystemBoolean
if set to true, the decimal type has to be sorted before currency / money types for the same .NET type
See Also