I am using Lucene .Net Version 3.0.3
Here is Lucene Query converted to string with the field key, value and tolerance.
+(() (((((FirstNames:John~0.8)^0.7)) (((LastNames:Smith~0.8)^0.8)) ())~2)) +(() (*:*))
I want to pass the string value to the Api where i need to convert back to Lucene Query.
I tried QueryParser and MultifieldQueryparser with the field FirstName and LastName, but not returning the exact Query as I passed.