I have the following code in C# .Net, the query seemingly runs ok without errors, but returns no results. I have checked that I am using the correct search broker and project id to search under. If I run a search with the same criteria in LL I get lots of results:string whereStr = "( \"OTLocation\" : \"" + dataID + "\" ) AND ( \"OTName\" : \"test\" )";searchResults = (new LLValue()).setAssocNotSet();LLValue selectList = (new LLValue()).setList();selectList.add("OTName");selectList.add("OTObjectDate");if(search.ApplyQuery(searchBroker,selectList,whereStr,LAPI_SEARCH.SORTBYDEFAULT,"",1, 10, "LivelinkQueryLanguage", searchResults) == 0) { int length = searchResults.size(); outPut += "
Items found: " + length + "
"; outPut += "
"; outPut += "NameDate"; for(int i = 0; i < length; i++) { outPut += "| " + searchResults.toValue(i)).toString("OTName") + " | " +(searchResults.toValue(i)).toString("OTObjectDate") + " |
"; } outPut += "
";} else { outPut += "
Query Failed."; GetErrors();}