vote up 4 vote down star
2

I've created a content-managed website using ASP.NET MVC. All content is stored in the 'Content' table in a SQL Server database, with the text itself stored in a column of datatype 'XML'.

I want to add a search feature to the site that will search all the XML content and return a list of results, each of which links to the content item.

Any ideas on which technology would be most appropriate?

Should I be using SQL Server full-text indexing, or something else such as DotLucene?

flag

80% accept rate

1 Answer

vote up 3 vote down

Lucene.net will be a better alternative for you. You can do lot of advanced search through lucene.

Docs @ http://incubator.apache.org/lucene.net/docs/2.1/

link|flag
Can you elaborate why Lucene.net would be better than FTS? – Pure.Krome May 28 at 9:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.