FullTextSearchAttributes Enumeration |
Flags used to control the behaviour of
IMapper Full-Text Search.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FullTextSearchAttributes
<FlagsAttribute>
Public Enumeration FullTextSearchAttributes
Members
| Member name | Value | Description |
---|
| SupportsRanking | 1 | The full-text search should support the RANK column. |
| AlwaysUseSubquery | 2 | The full-text search should always use a subquery in it's filtering. |
| CombineInflectional | 256 | The FTS should include standard INFLECTIONAL filtering on each search token. May be combined with any of the other Combine* attributes. This is the default if no Combine* attributes are specified. |
| CombineStartsWith | 512 | The FTS should include starts-with filtering on each search token unless the search string has any FTS special characters. May be combined with any of the other Combine* attributes. |
| CombineQuoted | 1024 | The FTS should include quoted (literal) filtering the entire search text unless the search string has a double-quote character. May be combined with any of the other Combine* attributes. |
| CombinationMask | 65280 | A mask for separating out the combinable Combine* attributes. |
| InnerHashJoin | 65536 |
Force the full-text search to be joined in using an INNER HASH JOIN. Normally for best performance you should allow the SQL-Server optimizer
to determine the type of join to use, but in specific circumstances you may want to provide this hint to improve performance.
|
| InnerLoopJoin | 131072 |
Force the full-text search to be joined in using an INNER LOOP JOIN. Normally for best performance you should allow the SQL-Server optimizer
to determine the type of join to use, but in specific circumstances you may want to provide this hint to improve performance.
|
| InnerMergeJoin | 262144 |
Force the full-text search to be joined in using an INNER MERGE JOIN. Normally for best performance you should allow the SQL-Server optimizer
to determine the type of join to use, but in specific circumstances you may want to provide this hint to improve performance.
|
| InnerJoinMask | 983040 | A mask for testing for the Inner*Join attributes. |
See Also