过滤器无法在asp.net页面上运行

时间:2015-01-02 18:25:16

标签: c# asp.net filter

我们正在为asp.net的学校制作一个项目,我们有一个包含我们添加的电影的页面,但现在我们想要过滤类型。我们编写的代码不起作用,搜索后我们仍然找不到正确的答案。任何人都可以帮我们找到它吗?

这是控制器代码

   public class AllMoviesController : Controller
        {
            private MovieBankEntities db = new MovieBankEntities();

            // GET: AllMovies
            public ActionResult Index(int? page, string searchString, string searchByGenre)
            {
                var movies = db.movies.Include(m => m.genres);
                IQueryable<movie> movieByGenre = db.movies;


                //Dropdownlist
                var allMovies = from m in db.movies
                                select m;

                var allGenres = from g in db.genres
                                select g;


                ViewBag.searchByGenre = new SelectList(allGenres, "genre1", "genre1");

                if (!string.IsNullOrEmpty(searchByGenre))
                {
                    allGenres = allGenres.Where(s => s.genre1 == searchByGenre);
                }

                //Searchbox


                if (!String.IsNullOrEmpty(searchString))
                {
                    allMovies = allMovies.Where(s => s.movieTitle.Contains(searchString));
                }

                return View(allMovies.ToList().ToPagedList(page ?? 1, 12));
            }

这是我们的观点:

<div class="positionSearchbox">
    <div class="positionDropList">
        @using (Html.BeginForm("Index", "AllMovies", FormMethod.Get))
        {
            <p>
               Genre : @Html.DropDownList("searchByGenre", "Select a genre")
                <input type="submit" value="Filter" class="btn btn-danger" />
        <p>Search Movie</p>
                @using (Html.BeginForm(new { @class = "form-search" }))
                {

                    @Html.TextBox("SearchString", "", new
        {
            style = "background-color: #f9f9f9; font-size: 16px; height: 35px; width: 130px; padding-left:10px; padding-right: 10px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; float:left; margin-top:-35px; margin-left:100px;"

        })

                    @*<div>@Html.TextBox("SearchString") &nbsp;&nbsp; <input class="bntSearch" type="submit" value="Search" /></div>*@
                }

            </p>
        }
    </div>


</div>

1 个答案:

答案 0 :(得分:0)

电影和流派如何相关?

在您的代码中,您正在过滤类型集合:

if (!string.IsNullOrEmpty(searchByGenre))
{
    allGenres = allGenres.Where(s => s.genre1 == searchByGenre);
}

但是你实际上从未使用allGenres变量做任何事情。您只能将电影返回到视图:

return View(allMovies.ToList().ToPagedList(page ?? 1, 12));

听起来您想按所选类型过滤电影。电影是否具有导航到流派对象的.Genre属性?像这样的东西?:

if (!string.IsNullOrEmpty(searchByGenre))
{
    allMovies = allMovies.Where(m => m.Genre.genre1 == searchByGenre);
}

或者是以其他方式相关的对象?由于你没有显示对象的结构,我只能猜测。但重点是allGenres变量似乎没有在代码中用于任何目的。