0

以下是我编写的代码,用于在广告表中按名称搜索特定项目。

public ActionResult SearchResult(string name)
{
    var advertisement = db.Advertisements.ToArray(); // retrieve data from database
    foreach (var ad in advertisement)
    {
        if (ad.Title.Equals(name))
        {
            return View(ad); 
        }
    }

    return View(advertisement);
}

即使我搜索一个已经在数据库中的项目,在所有情况下,if 条件都不为真。每次我在视图页面中获得整个项目列表作为结果。这里有什么问题?

我的广告模型如下所示。

using System;
using System.Drawing; // Image type is in this namespace
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;

namespace Bartering.Models
{
    public class Advertisement
    {
        [Key]
        public int ID { get; set; }

        [Required]
        [StringLength(100)]
        public string Title { get; set; }

        public Guid OwnerID { get; set; }

        [Required]
        public string Category { get; set; }

        public byte[] Image { get; set; }

        [Required]
        [StringLength(200)]
        public string Description { get; set; }
     }
}
4

1 回答 1

0

我认为你应该做这样的事情

public ActionResult SearchResult(string name)
{
   var ad=db.Advertisements.Where(s=>s.Title.ToUpper()==name.ToUpper())
                  .FirstOrDefault();
   if(ad!=null)
      return View(ad);
   //Nothing found for search for the name, Let's return the "NotFound" view
   return View("NotFound");
}

此代码将获取与我们的检查 (Title==name) 匹配的第一项(如果存在)并返回它。如果没有找到符合条件的内容,它将返回一个名为“Notfound”的视图

于 2013-10-06T13:53:05.010 回答