Is there any usage of Lucene.Net.Linq and database (EF)?

There is no example of database usage at the documentation

I know the lib LinqToLucene, but I want to try Lucene.Net.Linq.

Help me please to find any example.

Upvotes: 2

Views: 538

Answers (1)

Chris Eldredge
Chris Eldredge

Reputation: 2951

As the creator of Lucene.Net.Linq, I can say that there is no built in support for integrating Lucene.Net.Linq with EF or other database providers. This library is designed to allow LINQ to be used with a Lucene index, plain and simple. It makes no assumptions about how data gets into the index. That is up to the client to do.

Upvotes: 2

Related Questions