Implementing a search box using ASP.NET MVC, SQL Server, Entity Framework

I have no experience in creating a search solution, but I would like to have a search box in my solution, and I do not know where to start. Are there any interesting SQL Server tricks that I can use to execute my solution for a search solution (I use SQL Server 2008 hosted). I would like pointers to a multi-level tutorial that launches me with a simple search query. and then layers for more advanced code and functions.

+3
source share
3 answers

You really don’t say whether you need / need a spider to index your site “as is” (for example, Google, which is useful if your search content on each page comes from many different tables / objects / entities) or whether you want do you just request EF using full-text syntax to return an Entities collection?

"" - CodeProject ASP.NET " Searcharoo". - ( ), . searcharoo.codeplex.com 7 , / Searcharoo.net ( : , , /).

, , , SQL Server 2008 (, LIKE ). ( ) SQL ... EF .

, , StackOverflow ASP.NET MVC - SQL Server 2008 FTS. SQL FTS Lucene.NET( , ), .

+1
0

Source: https://habr.com/ru/post/1709263/


All Articles