.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Should be overridden by subclasses to create a CONTAINS expression if the native resource supports CONTAINS.

Namespace: Org.IdentityConnectors.Framework.Common.Objects.Filters
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
protected virtual T CreateContainsIgnoreCaseExpression(
	ContainsIgnoreCaseFilter filter,
	bool not
)

Parameters

filter
Type: Org.IdentityConnectors.Framework.Common.Objects.Filters..::..ContainsIgnoreCaseFilter
The contains filter. Will never be null.
not
Type: System..::..Boolean
True if this should be a NOT CONTAINS

Return Value

Type: T
The CONTAINS expression. A return value of null means a native CONTAINS query cannot be created for the given filter. In this case, Translate(Filter) may return an empty query set, meaning fetch everything. The filter will be re-applied in memory to the resulting object stream. This does not scale well, so if possible, you should implement this method.

See Also