I am trying azure search from my project and i am trying the following
indexClient.Documents.Search<AuctionResult>("john", new SearchParameters { IncludeTotalResultCount = true, Filter = "SoldDate ge 2017-04-06 and SoldDate le 2017-04-06 and substringof(Title, '2007')" });
what i need is i need to filter the result based on the field Title, if Title contains the text '2007', it should be included.
what went wrong for me, what change should i make?