nhibernate-search

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, perhaps I'll write one! Thanks ...

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 : AggregateRoot { public virtual Address Address { get; set; } } public class Person : LegalEntity { public virtual string FirstNames { get; ...

Faceted Search w/Lucene.NET & NHibernate.Search

Hi, 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 to find anything regarding this in the docs. Thanks! ...

How do I disable some entities based on a few properties in NHibernate Search?

Hi all.. 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 is set to true, I don't want my queries to show this particular blogpost. Is this possible? And if it is - How? :P Thanks in adv...