I have a "contact" document type that have properties title, address, zip, city, country.,.. index.searcher.CreateQuery(IndexTypes.Content).GroupedOr(new[] { "__NodeTypeAlias" }, new[] { "contact" })
.And().Field("country", "NO"); The country field is not getting added to the query. But when adding field "zip", "city", "title" to the query, it is working. Is "country" any special word. I have a document type "country". Is that an issue. Please help.