MongoDB.Entities by Đĵ ΝιΓΞΗΛψΚ

<PackageReference Include="MongoDB.Entities" Version="20.25.0" />

 FuzzyString

public 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.

public static int CharacterLimit { get; set; }

public string Value { get; set; }

public FuzzyString()

public static FuzzyString op_Implicit(string value)

public static string op_Implicit(FuzzyString fuzzyString)