我試圖讓我的搜索整個數據庫中列「價值」爲包含搜索字符串的所有結果我的網頁上的搜索功能的所有值的搜索功能。我爲我的項目使用NHibernate,我仍然習慣於應該指定查詢的方式。有返回包含搜索字符串
我目前的搜索功能:
[HttpGet]
public ActionResult Search(string searchString)
{
var searchResult = DbSession.QueryOver<Translation>()
.Where(x => x.Value.Contains(searchString))
.List();
return Json(searchResult, JsonRequestBehavior.AllowGet);
}
最終的查詢將有更多的限制,但首先我需要對數據進行篩選,使得列表僅包含包含搜索字符串的值。 目前,我在.Where(x => x.Value.Contains(searchString))
部件上收到System.Exception。 任何人有任何想法?
在此先感謝!
什麼是確切的例外呢? System.Exception真的是異常代碼拋出嗎? – qxg