Initializes a TableScanFilter that require a minimum estimated of rows scanned in otder to include a query in the profiler log.

Namespace: Huagati.LLBLGen.Profiler.Filters
Assembly: HuagatiLLBLGenProfiler (in HuagatiLLBLGenProfiler.dll) Version: 1.33.3996.16145

Syntax

C#
public TableScanFilter(
	int minScanRows,
	bool useRowScans
)
Visual Basic
Public Sub New ( _
	minScanRows As Integer, _
	useRowScans As Boolean _
)
Visual C++
public:
TableScanFilter(
	int minScanRows, 
	bool useRowScans
)

Parameters

minScanRows
Type: System..::..Int32
Minimum estimated (by the SQL optimizer) rows scanned.
useRowScans
Type: System..::..Boolean
Set to true, required to differentiate from other overloads

See Also