unit test demonstrating the correct way to retrieve 'fielded' attributes.
It'd be nice to have more unit tests for testing all the extension methods behave properly.
1. should create MSBuild process - would be good for me to learn 2. Build both zipped source and assembly releases.
Calling LINQ_Lucene_expression.ToPagedList() performs the search twice. Once for the Count, and once of the Skip and Take methods. By building in support for PagedList<T>, the double searches may b...
Converting a linq exp into a Query is not a speedy process as the expression tree is traversed many times. One idea is to have a query compiler that returns a delegate. This relegates (is that even...
ParsingQueryTranslator converts a LINQ expression tree into a string for parsing by the Lucene.Net built-in QueryParser/MultiFieldQueryParser classes. ObjectQueryTranslator will convert the linq e...
OrderBy, OrderByDescending support
Currently, Type descriptors can be used format fields. There are no unit tests for this, and it hasn't been tested in any demo code.
Enumerable.All() and overloads support.
In the Lucene world, faster indexing can be accomplished by first indexing to RAMDirectory(s), then merging the directories into main index directory (whatever it's type - RAMDirectory or FSDirecto...