0

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());
    }
4

1 に答える 1

1

間違いなくa.displaySize.ToString().Contains(searchString.ToUpper()));目的を果たすことはありません。10進値の整数部分を、より正確な結果が得られる検索文字列と比較してみてください。このようなConvert.ToInt32(a.displaySize).ToString().Contains(searchString)

于 2012-04-13T12:29:59.160 に答える