Thank you for continuing the series even when under the weather, Paul! Get well soon. I'll be busy catching up with your previous series' before I get to this one. Merry Christmas from Montreal! Great videos!
Hey Paul , Thank you so much once again for the wonderful tutorial. Also once small request, can you please show us, how to implement Multi Search( with PDF ) in Umbraco 8. That will help us alot . Take care and get well soon buddy..!! Thank once again..
If anybody else is following along in code: values.Add(item.Fuzzy()); // Doesn't work because extension String.Fuzzy(..) doesn't exists (only String[].Fuzzy) // Think it should be something like (or create a static string method for Fuzzy as well): values.Add(new ExamineValue(Examineness.Proximity, item)); //
Thank you for continuing the series even when under the weather, Paul! Get well soon. I'll be busy catching up with your previous series' before I get to this one. Merry Christmas from Montreal! Great videos!
Hi thanks for your kind words. Merry Christmas to you too
Hey Paul , Thank you so much once again for the wonderful tutorial. Also once small request, can you please show us, how to implement Multi Search( with PDF ) in Umbraco 8. That will help us alot . Take care and get well soon buddy..!! Thank once again..
Cheers mate. Yeah I should be able to do that
If anybody else is following along in code:
values.Add(item.Fuzzy()); // Doesn't work because extension String.Fuzzy(..) doesn't exists (only String[].Fuzzy)
// Think it should be something like (or create a static string method for Fuzzy as well):
values.Add(new ExamineValue(Examineness.Proximity, item)); //