DbSeekOptions Enumeration
Visual Studio 2010
Options that specify how the Seek method will seek on an index.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
| Member name | Description | |
|---|---|---|
| FirstEqual | Advances to the first matching row (in index order) on the index. | |
| LastEqual | Advances to the last matching row (in index order) on the index. | |
| AfterEqual | Advances to the last matching row on the index. If there are no matching rows, advances to the first row with values after the seek value, in index order. | |
| After | Advances to the first row with values (in index order) after the seek value. | |
| BeforeEqual | Advances to the first matching row on the index. If there are no matching rows, advances to the last row with values before the seek value, in index order. | |
| Before | Advances to the last row with values (in index order) before the seek value. |
Show: