PostgreSqlSpecificCreatorCreateLikeParameter 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.DQE.PostgreSql
Assembly:
SD.LLBLGen.Pro.DQE.PostgreSql (in SD.LLBLGen.Pro.DQE.PostgreSql.dll) Version: 5.4.0.0 (5.4.0)
Syntax public override DbParameter CreateLikeParameter(
string pattern,
string targetFieldDbType
)
Public Overrides 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.
Implements
IDbSpecificCreatorCreateLikeParameter(String, String)See Also