コントローラーのインデックスで検索を試みて、同じビュー(インデックス)で検索結果を取得しようとしています。これは次のアクションです。
public ActionResult Index(string SeatchParam)
{
var Employees = db.Employees.Include(e => e.Location).Include(e => e.Department).Where(e => e.FirstName.Contains(SeatchParam)|| e.FatherName.Contains(SeatchParam) || e.LastName.Contains(SeatchParam) || e.Location.LocationName.Contains(SeatchParam) || e.Department.DepartmentName.Contains(SeatchParam)).Take(10);
return View(Employees.ToList());
}
ビューは次のようになります。
@model IEnumerable<OG.Models.Employee>
@{
ViewBag.Title = "Index";
}
<h2>Search Employees</h2>
<form action="Employee/Index" method="get">
<input type="text" name="SearchParam" />
<input type="submit" value="Search" />
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table border="10">
<tr>
<th>
@Html.DisplayNameFor(model => model.EmployeeId)
</th>
<th>
@Html.DisplayNameFor(model => model.FullName)
</th>
<th>
@Html.DisplayNameFor(model => model.Department.DepartmentName)
</th>
<th>
@Html.DisplayNameFor(model => model.Location.LocationName)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.EmployeeId)
</td>
<td>
@Html.DisplayFor(modelItem => item.FullName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Department.DepartmentName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Location.LocationName)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.EmployeeId }) |
@Html.ActionLink("Details", "Details", new { id = item.EmployeeId }) |
@Html.ActionLink("Delete", "Delete", new { id = item.EmployeeId })
</td>
</tr>
}
</table>
</form>
検索したところ、結果が見つかりませんでした。AJAXまたはJsonなしでそれを実行できますか?ありがとう、