The reason why i thought it was syntax is because of the "bodyText", "nike".Fuzzy()
Havnt tried to look at the actual raw query since it wont even run :/
The macro just throws this error which in my world makes perfect sense :)
Error CS1061: 'string' does not contain a definition for 'Fuzzy' and no extension method 'Fuzzy' accepting a first argument of type 'string' could be found (are you missing a using directive or an assembly reference?) at System.Web.Compilation.AssemblyBuilder.Compile()
First attempt at examine, syntax error
Hey there :)
Im having my first attempt at examine, so far ive been following the blog post here :
http://umbraco.com/follow-us/blog-archive/2011/9/16/examining-examine.aspx
But when it comes to fuzzy search the syntax just wont work.
Here is an image of how ive tested it, and on the "fuzzy" line its breaking up.
Ive tried different things but nothing seems to work. Im testing it on a 4.7.2 site with about 4k nodes
Hey,
My macro wont even run.
The reason why i thought it was syntax is because of the "bodyText", "nike".Fuzzy()
Havnt tried to look at the actual raw query since it wont even run :/
The macro just throws this error which in my world makes perfect sense :)
Error CS1061: 'string' does not contain a definition for 'Fuzzy' and no extension method 'Fuzzy' accepting a first argument of type 'string' could be found (are you missing a using directive or an assembly reference?) at System.Web.Compilation.AssemblyBuilder.Compile()
Add in a using directive...
@using Examine.LuceneEngine.SearchCriteria
Also Fuzzy takes a float.. so you need Fuzzy(0.8f)
Just the thing i was missing :) Thx a bunch !
is working on a reply...