Method | Description | |
---|---|---|
AddAddFieldName ( string fieldName ) : void |
Add a field name to consider in the search query.
|
|
AddSearchTerm ( string term ) : void |
Add a search term.
|
|
GetQuery ( ) : string |
Assemble the query fields and search terms into a SQL WHERE clause fragment.
|
|
H3Search ( bool ignoreNoiseWords ) : System |
Constructor without any search terms specified.
|
|
H3Search ( string searchTerms, bool ignoreNoiseWords ) : System |
Constructor accepts search terms delimitted by whitespace.
|
public AddAddFieldName ( string fieldName ) : void | ||
fieldName | string | Field name to add to the query. |
return | void |
public AddSearchTerm ( string term ) : void | ||
term | string | Search term to add to the query. |
return | void |
public H3Search ( bool ignoreNoiseWords ) : System | ||
ignoreNoiseWords | bool | Ignore common noise words like prepositions. Does not apply to quoted phrases. |
return | System |
public H3Search ( string searchTerms, bool ignoreNoiseWords ) : System | ||
searchTerms | string | Search terms delimitted by whitespace. |
ignoreNoiseWords | bool | Ignore common noise words like prepositions. Does not apply to quoted phrases. |
return | System |