Specifies the threshold for the CBR query dynamic switching optimization, used for queries that combine both a content-based retrieval (CBR) search and a relational search on a database (DB). Dynamic switching optimization determines whether the CBR search or the DB search occurs first.

This property applies only if the CBRQueryOptimization property is set to DYNAMIC_SWITCHING, and if a query does not include a a SQL optimization option. If this property is not set, the CBR search always executes first. If this propety is set to zero, the DB search always executes first.

For more information, see CBR Query Optimization.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property CBRQueryDynamicThreshold As Nullable(Of Integer)
C#
Nullable<int> CBRQueryDynamicThreshold { get; set; }
Visual C++
property Nullable<int> CBRQueryDynamicThreshold {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_cbrQueryDynamicThreshold();
function set_cbrQueryDynamicThreshold(value);

ToggleRemarks

ToggleSee Also