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

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

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