Searches the full-text index with a specified query string and returns all items that still
            exist in SimpleDB.
            
        
        Namespace: SimolAssembly: Simol (in Simol.dll) Version: 1.0.0.0
Syntax
| C# | 
|---|
List<T> Find<T>( string queryText, int resultStartIndex, int resultCount, string searchProperty )  | 
| Visual Basic | 
|---|
Function Find(Of T) ( _ queryText As String, _ resultStartIndex As Integer, _ resultCount As Integer, _ searchProperty As String _ ) As List(Of T)  | 
| Visual C++ | 
|---|
generic<typename T> List<T>^ Find( String^ queryText, int resultStartIndex, int resultCount, String^ searchProperty )  | 
Parameters
- queryText
 - Type: System..::..String
 
- resultStartIndex
 - Type: System..::..Int32
 
- resultCount
 - Type: System..::..Int32
 
- searchProperty
 - Type: System..::..String
 
Type Parameters
- T