Tortuga.Chain Namespace
Tortuga.Chain.CommandBuilders Namespace
Tortuga.Chain.Metadata Namespace

SqlServerLimitOption Enumeration

Limit options supported by SQL Server.

Namespace:  Tortuga.Chain
Assembly:  Tortuga.Chain.SqlServer.OleDb (in Tortuga.Chain.SqlServer.OleDb.dll)

Syntax


public enum SqlServerLimitOption
Public Enumeration SqlServerLimitOption
public enum class SqlServerLimitOption

Members


Member nameDescription
None No limits were applied.
Rows Uses OFFSET/FETCH
Percentage Uses TOP (N) PERCENT
RowsWithTies Uses TOP (N) WITH TIES
PercentageWithTies Uses TOP (N) PERCENT WITH TIES
TableSampleSystemRows Uses TABLESAMPLE SYSTEM (N ROWS)
TableSampleSystemPercentage Uses TABLESAMPLE SYSTEM (N PERCENT)

Remarks


This is a strict subset of LimitOptions