Lucene.Net.Linq 3.1.48

There is a newer version of this package available.
See the version list below for details.
dotnet add package Lucene.Net.Linq --version 3.1.48
NuGet\Install-Package Lucene.Net.Linq -Version 3.1.48
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Lucene.Net.Linq" Version="3.1.48" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lucene.Net.Linq --version 3.1.48
#r "nuget: Lucene.Net.Linq, 3.1.48"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Lucene.Net.Linq as a Cake Addin
#addin nuget:?package=Lucene.Net.Linq&version=3.1.48

// Install Lucene.Net.Linq as a Cake Tool
#tool nuget:?package=Lucene.Net.Linq&version=3.1.48

Execute LINQ queries on Lucene.Net complete with object to Document mapping.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Lucene.Net.Linq:

Package Downloads
NuGet.Lucene

Implementation of NuGet package repository that stores package metadata in a Lucene index for very fast package lookup and search capabilities. Includes an optional file system watcher that will keep packages on disk in sync with the Lucene index. This package does not serve as a standalone package feed or package server; instead it must be embedded in other projects.

NuGet.Lucene.Web

Provides controllers and WCF Data Services classes that can be exposed in an asp.net application to expose a NuGet.Lucene repository over the web.

PieDb

Easy-as-pie NOSQL object database. Transactions and unit of work / session support. https://github.com/mcintyre321/PieDb MIT Licence

Linqdex

Description

Carubbi.ElasticSearch

A facade to lucene.net that is a port to the famous java search engine Lucene. Works like a syntax sugar to use it with the BrazilianIndexer

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Lucene.Net.Linq:

Repository Stars
liulei901112/TextLocator
基于.net实现的本地文档的全文索引定位器,根据关键词搜索定位本地文档内容。便于查找历史文档时节省时间,本地文本搜索神器!
Version Downloads Last updated
3.6.0 68,407 6/22/2016
3.5.3 13,301 6/30/2015
3.5.2 10,662 1/5/2015
3.5.1 2,635 12/5/2014
3.5.0 2,166 11/19/2014
3.4.1 1,888 11/10/2014
3.4.0 1,397 10/27/2014
3.3.4 15,145 9/9/2014
3.3.3 9,334 8/29/2014
3.3.2 10,028 8/6/2014
3.3.1 1,801 6/30/2014
3.3.0 1,363 6/20/2014
3.2.57 7,444 2/26/2014
3.2.55 6,771 1/2/2014
3.2.54 1,674 12/2/2013
3.2.53 3,181 9/4/2013
3.2.52 2,360 8/7/2013
3.1.51 2,373 6/28/2013
3.1.48 3,488 4/9/2013
3.1.46 3,755 2/26/2013
3.1.45 3,083 2/8/2013
3.1.44 1,304 2/7/2013
3.0.39 1,947 12/5/2012
3.0.38 1,665 11/12/2012
1.0.37 1,799 9/6/2012
1.0.34 1,558 7/6/2012
1.0.33 1,348 7/2/2012
1.0.32 1,355 7/2/2012
1.0.29 5,005 6/21/2012
1.0.28 1,369 6/21/2012
1.0.27 1,332 6/19/2012
1.0.26 1,423 5/25/2012
1.0.22 1,418 5/9/2012

## Current Release

     * Enable analyzing and retrieving term vectors using [Field(TermVector = TermVectorMode.Yes)] and TermFreqVectorDocumentMapper
     * Enable Field level boosting while indexing using [Field(Boost = 5)]

     ## 3.1.46

     * Open new IndexWriter after ISession.Commit fails and calls Rollback on current IndexWriter
     * Convert objects and keys to documents and queries before writing to IndexWriter

     ## 3.1.45

     * Automatically creates Analyzer using metadata attributes like [Field(Analyzer=typeof(StandardAnalyzer)]
     * Store different object types in single index
     * Prevent documents with null values on key properties from being stored
     * Enable sorting on types implementing IComparable<T> but not non-generic IComparable
     * Allow client to provide custom IDocumentMapper<T> implementations