Hi All,
I'm building a bot based on the ms bot framework and i'd like to be able to connect to our Find index.
I added the Episerver Find Nuget package to the project and configured the app settings to connect to the index
The issue I have is that all of the search objects require a type when searching .. for example:
var searchResult = client.Search<BlogPost>()
.For("Beethoven")
.GetResult();
This example requires the type of "BlogPost"
Is what I am trying to do possible or does it need to be linked with the CMS?
Any help, much appreciated.
Thanks,
Paul