Pre-execution plan filter evaluator - called before the execution plan is retrieved to evaluate the portions of the filter criteria that can be evaluated without an execution plan.

Namespace: Huagati.LinqToSQL.Profiler.Filters
Assembly: HuagatiL2SProfiler (in HuagatiL2SProfiler.dll) Version: 1.33.3996.16059

Syntax

C#
bool IsValidBeforePlan(
	QueryInformation query
)
Visual Basic
Function IsValidBeforePlan ( _
	query As QueryInformation _
) As Boolean
Visual C++
bool IsValidBeforePlan(
	QueryInformation^ query
)

Parameters

query
Type: Huagati.LinqToSQL.Profiler..::..QueryInformation
The QueryInformation object to evaluate.

Return Value

True if the pre-filter predicates makes the query valid for further evaluation (i.e. execution plan evaluation). False if not.

See Also