Пример #1
0
        public void Group()
        {
            BooleanQuery query = new BooleanQuery();
            query.Setup
                (
                    x => x.WildCard("_name", "*highlights"),
                    x => x.Term("_name", "work")
                );
            query.Group().Setup
                (
                    x => x.Term("_name", "work")
                );

            throw new NotImplementedException("Needs finishing");

            ExecuteAndAssert(query, 4);
        }