public void testPhraseQuery() throws Exception {
Transaction transaction = fullTextSession.beginTransaction();
final QueryBuilder monthQb = fullTextSession.getSearchFactory()
.buildQueryBuilder().forEntity( Month.class ).get();
Query query = monthQb
.phrase()
.onField( "mythology" )
.sentence( "colder and whitening" )
.createQuery();