Class FuzzyString
Use this type to store strings if you need fuzzy text searching with MongoDB
TIP: There's a default limit of 250 characters for ensuring best performance.
If you exceed the default limit, an exception will be thrown.
You can increase the limit by sacrificing performance/resource utilization by setting the static property
FuzzyString.CharacterLimit = 500
at startup.
Inheritance
Object
FuzzyString
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: MongoDB.Entities
Assembly: MongoDB.Entities.dll
Syntax
public class FuzzyString
Constructors
FuzzyString()
Declaration
public FuzzyString()
FuzzyString(String)
instantiate a FuzzyString object with a given string
Declaration
public FuzzyString(string value)
Parameters
Type | Name | Description |
---|---|---|
String | value | the string value to create the FuzzyString with |
Properties
CharacterLimit
Declaration
public static int CharacterLimit { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Value
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
String |