Example #1
0
        public void Search_Index()
        {
            Index      fav = Index.Get("favaourites");
            IndexQuery qry = new IndexQuery();

            qry.GetKey("FirstName").StartsWith("mo").OR().GetKey("FirstName").StartsWith("dad");
            IList <Node> nodes = fav.Search(qry);

            Assert.AreEqual(2, nodes.Count);
        }