string drop1Value = "test1"; //or another type you are using
string drop2Value = "test2"; //or another type you are using
if (_examineManager.TryGetIndex("ExternalIndex", out IIndex? index))
{
var result = index.Searcher.CreateQuery("content").NodeTypeAlias("myDocumentAlias")
.And()
.Field("property1", drop1Value)
.And()
.Field("property2", drop2Value)
.Execute();
}
Something more or less like this. If you need more help, show the code
Searching from multiple drop downs
Whats the best way to make a multi drop down search box, like the ones used to search for properties on RightMove?
The documentation I've seen for Examine don't show what I want.
Nick
Hi Nick,
This scenario you describe is possible be made by custom query
https://docs.umbraco.com/umbraco-cms/reference/searching/examine/quick-start#creating-the-search-query
Something more or less like this. If you need more help, show the code
is working on a reply...