Using Version 8.3, the following c# code works:
var lfSearch = new Search(lfSession);
lfSearch.Command = "{[Template1]}";
lfSearch.Run();
Now I would like to create an OR condition on 2 or more templates.
I've tried the following without success:
lfSearch.Command = "{[Template1]|[Template2]}";
lfSearch.Command = "{[Template1]}|{[Template2]}";
Any guidance is appreciated.