Link to home
Start Free TrialLog in
Avatar of R1ND3R
R1ND3R

asked on

Multi-facet search using SQL Server Full Text Search in ASP.NET

I have a basic implementation of using multi-facet searching in a small application I created. Similar to the one this guy has: http://www.isurinder.com/blog/post/2011/01/14/At-Last!-Created-My-Own-eBay-Style-Search-Using-Solrnet.aspx.

I am using SolrNet to create my search facet's. However, SolrNet uses Tomcat Apache as its backbone to do the indexing. Unfortunately, due to hosting restrictions, I cannot install Apache on my clients server.

Is there any .NET alternatives to carry out searching in a similar manner using just .NET and SQL Server?

I have been looking up SQL Server Full Text Indexing, but I don't know how I would use this for my situation.
Avatar of Friman001
Friman001
Flag of United States of America image

Grab some parameters from the user and create a SQL query using a StringBuilder object.  Then, use SQL controls to get the data you want.  This is just one option.

SQLDataSource:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasource.aspx

Ryan F
Avatar of R1ND3R
R1ND3R

ASKER

Thanks for the response. But is there a better approach then using a StringBuilder to build an SQL query?

Plus, how would you then determine and display how many records are left in another facet?
ASKER CERTIFIED SOLUTION
Avatar of Friman001
Friman001
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial