I am trying to get a handle on Solrnet and interacting an ASP.NET site with a Solr server. However, the sample app (on the code repository) is MVC based ,does anyone know of a version in plain vanilla ASP.NET?
Thanks
I am trying to get a handle on Solrnet and interacting an ASP.NET site with a Solr server. However, the sample app (on the code repository) is MVC based ,does anyone know of a version in plain vanilla ASP.NET?
Thanks
There aren't any major differences really:
var solr = ServiceLocator.Current.GetInstance<ISolrOperations<MyDocumentClass>>()
), (in MVC it's easy to instead inject the interface using an IoC container)