I am trying to use NHibernate.Search, which I created from the trunk and use with NHibernate 2.0.1. When I add the NHibernate.Search property configuration to the configuration file:
<property name="hibernate.search.default.directory_provider">NHibernate.Search.Storage.RAMDirectoryProvider, NHibernate.Search</property>
<property name="hibernate.search.default.indexBase">~\index\</property>
I get an invalid System.Xml.Schema.XmlSchemaException: Enumeration constraint failed. When i use:
var configuration = new Configuration().Configure();
So how can I solve this problem?
source
share