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

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 CreateStartsWithIgnoreCaseExpression(
	StartsWithIgnoreCaseFilter filter,
	bool not
)

Parameters

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

Return Value

Type: T
The STARTS-WITH expression. A return value of null means a native STARTS-WITH 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