This is slightly orthogonal to your question.
SQL Server Compact Edition actually doesn't perform very well with SQL queries. You get much better performance by opening tables directly. In .NET, you do this by setting the command object's CommandText
property to the table name, and the CommandType
property to CommandType.TableDirect
.
If you want to filter the results, you will need an index on the table on the column(s) you want to filter by. Specify the index to use by setting the IndexName
property and use SetRange
to set the filter.
You can then read as many or as few records as you like.