actionLinkで検索機能を作ろうとしています。
actionLink は、次のようなコントローラーにパラメーターを提供します
@Html.ActionLink("Intel Core i5", "Search", "Store", new { @searchString = "i5" }, null)
この値を渡し、コントローラーで動作しています。ただし、文字列データ型ではなく、10 進数データ型を比較しようとすると。現在、プロセッサは varchar で、displaySize は 10 進数です。
searchString で displaySize を処理する方法がわかりません。
私のコントローラーはこれです。
//Controller here
public ActionResult Search(string searchString)
{
var product = from a in _db.Product.Include(a => a.Category)
select a;
if (!String.IsNullOrEmpty(searchString))
{
//processor is working because searchString is string, however,
//displaySize is not working because of decimal value, and
// I don't know how to write Where condition in here.
product = product.Where(a => a.processor.ToUpper().Contains(searchString.ToUpper())
||
//a.displaySize.ToString().Contains(searchString.ToUpper()));
//I repalce to below code, but it has error
//'Entity does not recognize the method ''System.String ToString()' method.
Convert.ToDecimal(a.displaySize).ToString().Contains(searchString)
}
return View(product.ToList());
}