IDbSpecificCreatorCreateLikeParameter Method |
Creates a valid Parameter for the pattern in a LIKE statement. This is a special case, because it shouldn't rely on the type of the
field the LIKE statement is used with but should be the unicode varchar type.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntax DbParameter CreateLikeParameter(
string pattern,
string targetFieldDbType
)
Function CreateLikeParameter (
pattern As String,
targetFieldDbType As String
) As DbParameter
Parameters
- pattern
- Type: SystemString
The pattern to be passed as the value for the parameter. Is used to determine length of the parameter. - targetFieldDbType
- Type: SystemString
Type of the target field db, in provider specific enum string format (e.g. "Int" for SqlDbType.Int)
Return Value
Type:
DbParameter
Valid parameter for usage with the target database.
See Also