FieldFullTextSearchPredicate Constructor (IList, FullTextSearchOperator, String, Boolean) | 
 
            CTor
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic FieldFullTextSearchPredicate(
	IList entityFields,
	FullTextSearchOperator operatorToUse,
	string pattern,
	bool negate
)
Public Sub New ( 
	entityFields As IList,
	operatorToUse As FullTextSearchOperator,
	pattern As String,
	negate As Boolean
)
Parameters
- entityFields
 - Type: System.CollectionsIList
The entity fields to include in the CONTAINS/FREETEXT fieldlist. List can contain EntityField or EntityField2 field objects. - operatorToUse
 - Type: SD.LLBLGen.Pro.ORMSupportClassesFullTextSearchOperator
operatore to use - pattern
 - Type: SystemString
pattern (incl. full text search commands) - negate
 - Type: SystemBoolean
Flag to make this expression add NOT to itself 
RemarksSqlServer 2005 specific. To set the object alias for the fields, use the field object's method SetObjectAlias instead
See Also