819 B
819 B
title | author | description | ms.author | ms.date | uid |
---|---|---|---|---|---|
Add search to an ASP.NET Core MVC app | rick-anderson | Shows how to add search to simple ASP.NET Core MVC app | riande | 04/07/2017 | tutorials/first-mvc-app-xplat/search |
[!INCLUDE adding-model]
Note: SQLlite is case sensitive, so you'll need to search for "Ghost" and not "ghost".
[!INCLUDE adding-model]
Change the <form>
tag in the Views\movie\Index.cshtml Razor view to specify method="get"
:
<form asp-controller="Movies" asp-action="Index" method="get">
[!INCLUDE adding-model]
[!div class="step-by-step"] Previous - Controller methods and views Next - Add a field