Anu
Anu

Reputation: 753

How to integrate solr full text search engine in asp.net

How to integrate solr net in asp.net site. I am new and having little idea. After searching on google i am confused from where i should start. Please refer me some ref. link from where i can do this in better way. Thakns.

Upvotes: 2

Views: 3209

Answers (1)

Paige Cook
Paige Cook

Reputation: 22555

Your best option is to use SolrNet. It has the capability to parse a Solr response into a .Net object. Please see the examples on the SolrNet site for examples of how to setup the library to query and parse the responses. Also, if you check out the SolrNet source code on GitHub, it includes a sample ASP.NET MVC application that shows a great examples of using the library. Please note that if you do not have an MVC site, the code shown in the sample app can be applied in a Web Forms application.

Upvotes: 2

Related Questions