Tagged Questions
The nhibernate-search tag has no wiki summary.
2
votes
1answer
22 views
Will NHibernate Search ever become aware of changes to the underlying data?
I've seen several statements online to the effect that NHibernate (or Hibernate) Search "takes care of the database/index synchronization".
When I read these statements, I cannot help but wonder if ...
1
vote
1answer
199 views
How to structure domain model when using NHibernate Search/Lucene
I am messing around with NHibernate Search and Lucene to create a searchable index of legal entities. My domain model looks somewhat like this:
[Indexed]
public abstract class LegalEntity : ...
1
vote
2answers
462 views
NHibernate Search without attributes
Is there any NHibernate Search library which doesn't require attributes on your entity properties?
I'd like to keep my entities as clean POCOs, so perhaps there is a fluent interface?
If not, ...
0
votes
1answer
33 views
Compile NHibernate Search Code Against NHibernate 3.2 Binary
I downloaded source code from http://nhcontrib.svn.sourceforge.net/viewvc/nhcontrib/trunk/src/ changed the reference to 3.2 version of NHibernate. When I compiled I got following error/warning ...
0
votes
0answers
17 views
NHibernate Search and Eager Fetching
I used Lucene and NHibernate Search session to search
IFullTextSession fullTextSession = Search.CreateFullTextSession(this.session);
var fullTextResult = ...
0
votes
2answers
34 views
How do I disable some entities based on a few properties in NHibernate Search?
Im still pretty new to NHibernate.Search so please bear with me if this is stupid question :)
Say, I have indexed some entities of type BlogPost, which has a property called IsDeleted. If IsDeleted ...
0
votes
1answer
484 views
Faceted Search w/Lucene.NET & NHibernate.Search
Anyone know if it is possible to perform faceted searches with NHibernate.Search and Lucene.NET or do you need to implement something like Solr as well to get this functionality.
I haven't been able ...