PreProcessorHandleMethodCallContains Method  | 
 
            Handles the method call expression for a call to a Contains method, be it on Queryable, IList, string or other type.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntaxprotected virtual Expression HandleMethodCallContains(
	MethodCallExpression expressionToHandle
)
Protected Overridable Function HandleMethodCallContains ( 
	expressionToHandle As MethodCallExpression
) As Expression
Parameters
- expressionToHandle
 - Type: System.Linq.ExpressionsMethodCallExpression
The expression to handle. 
Return Value
Type: 
Expressionbased on the declaring type, it will return a ContainsExpression, LikeExpression or InClause expression.
See Also