views:

24

answers:

0

NHibernate is working fine in my current solution but I would like to do queries that search all fields. How can I do something like

.CreateFullTextQuery<MyObjectGraph>("*", queryText)
.CreateFullTextQuery<MyObjectGraph>("%", queryText)
.CreateFullTextQuery<MyObjectGraph>("*:test")
.CreateFullTextQuery<MyObjectGraph>("%:test")

I tried the above but these do not work. I search for quite some time but cannot find a way to do this.