DbRangeOptions Enumeration
Visual Studio 2010
Specifies the options used by the SetRange method when specifying the index range over which to seek.
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 | |
|---|---|---|
| InclusiveStart | Includes the startData value in the range. | |
| InclusiveEnd | Includes the endData value in the range. | |
| ExclusiveStart | Excludes the startData value from the range. | |
| ExclusiveEnd | Excludes the endData value from the range. | |
| ExcludeNulls | Excludes nullptr values from the range. | |
| Prefix | Specifies a range in which index values begin with the value of startData. When using the Prefix option, endData must be set to nullptr. | |
| Match | Specifies a range in which index values match the value of startData. When using the Match option, endData must be set to nullptr. | |
| Default | Equivalent to setting both the InclusiveStart and InclusiveEnd flags. |
Show: