2013-01-04 172 views
2

我正在開發一個應用程序,我需要給用戶提供搜索選項,就像用戶輸入'scienc'搜索功能應該得到名稱科學的課程,或者如果在他們的描述科學像word一樣,我的意思是說,如果用戶輸入半字查詢應通過匹配字符序列獲得完整的單詞,但我不知道如何實現這一點,我在我的應用程序中使用實體框架。ASP.net從數據庫搜索

還有一件事我需要從多個表中搜索。

在此先感謝。

+0

搜索ajax自動填充將解決您的問題 –

+0

關閉我的頭頂,您可以使用SQL Server中的全文搜索功能http://msdn.microsoft.com/en-us/library/ms142571.aspx然後創建一個自定義存儲過程並使用DbCommand來執行它並返回結果http://blogs.msdn.com/b/meek/archive/2008/03/26/ado-entity-framework-stored-procedure-customization.aspx – bUKaneer

+0

進一步@ RahulVasantraoKamble的答案嘗試這個流行的工具[jquery用戶界面自動完成](http://jqueryui.com/autocomplete/) – Stokedout

回答

0

我想你想實現自動完成,如果這樣的話下面的代碼將解決你的問題:

代碼文件:

[WebMethod(EnableSession = true)] 
[ScriptMethod(ResponseFormat = ResponseFormat.Json)] 
public string[] GetPatientLastName(string prefix) 
{ 
    List<string> customers = new List<string>(); 
    using (SqlConnection conn = new SqlConnection()) 
    { 
     string connectionstring = CCMMUtility.GetCacheForWholeApplication(); 
     conn.ConnectionString = connectionstring; 
     using (SqlCommand cmd = new SqlCommand()) 
     { 
      cmd.CommandText = "select distinct top(10) PatientLastname from tblMessage where " + 
      "PatientLastname like '%'+ @SearchText + '%' order by PatientLastname"; 
      cmd.Parameters.AddWithValue("@SearchText", prefix); 
      cmd.Connection = conn; 
      conn.Open(); 
      using (SqlDataReader sdr = cmd.ExecuteReader()) 
      { 
       while (sdr.Read()) 
       { 
        customers.Add(string.Format("{0}", sdr["PatientLastname"])); 
       } 
      } 
      conn.Close(); 
     } 
     return customers.ToArray(); 
    } 
} 

jQuery代碼:

$(document).ready(function() { 
     $('[ID$=txtPatientLastname]').live('keyup.autocomplete', function() { 

      $(this).autocomplete({ 
       source: function (request, response) { 
        $.ajax({ 
         url: '<%=ResolveUrl("~/Resources/WebService.asmx/GetPatientLastName") %>', 
         data: "{ 'prefix': '" + request.term + "'}", 
         dataType: "json", 
         type: "POST", 
         contentType: "application/json; charset=utf-8", 
         success: function (data) { 
          response($.map(data.d, function (item) { 
           return { 
            label: item.split('-')[0], 
            val: item.split('-')[1] 
           } 
          })) 
         }, 
         error: function (response) { 
          alert(response.responseText); 
         }, 
         failure: function (response) { 
          alert(response.responseText); 
         } 
        }); 
       }, 
       select: function (e, i) { 
       }, 
       minLength: 1 
      }); 
     }); 
}); 

希望這將滿足您的要求。

+0

謝謝拉曼,但遺憾地說,我必須從4個表中搜索,如果我發現結果在2或3表匹配這個詞我必須顯示所有..幫助我,如果你有任何想法。 –

+0

邏輯將進入數據庫的過程...這一步之後......您需要實現db查詢中的連接以從多個表中獲取數據.. –