John에서 항목을 표시하는 데이터를 가져 오는 방법을 알 수 없습니다. dataTables를 사용하고 있으므로 작동 방법을 모릅니다. 앱을 실행해도 여전히 모든 사용자가 표시됩니다. 여기 내가 지금까지 얻은 것은 도움이 될 것입니다. 컨트롤러에없는 모델에서 where 절을 프로그램에 작성하려고합니다. 코드가 모든 직원 인 empList
를 반환하기 때문에특정 데이터 만 표시하도록 asp.net에서 데이터 테이블을 얻는 방법
컨트롤러
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Asp.NetMVCCrud.Models;
namespace Asp.NetMVCCrud.Controllers
{
public class EmployeeController : Controller
{
// GET: Employee
public ActionResult Index()
{
return View();
}
public ActionResult GetData()
{
using(DBModel db = new DBModel())
{
db.Employees.Where(Employee => Employee.Name == "John");
List<Employee> empList = db.Employees.ToList<Employee>();
return Json(new { data = empList }, JsonRequestBehavior.AllowGet);
}
}
}
}
직원 모델은
namespace Asp.NetMVCCrud.Models
{
using System;
using System.Collections.Generic;
public partial class Employee
{
public int EmployeeID { get; set; }
public string Name { get; set; }
public string Postion { get; set; }
public string Office { get; set; }
public Nullable<int> Age { get; set; }
public Nullable<int> Salary { get; set; }
}
}
보기 색인을
@{
ViewBag.Title = "Employee List";
}
<h2>Employee Crud Operations</h2>
<table id="employeetable" class="table table-striped table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Salary</th>
</tr>
</thead>
</table>
<link href="https://cdn.datatables.net/1.10.16/css/dataTables.bootstrap4.min.css" rel="stylesheet" />
@section scripts{
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/dataTables.bootstrap4.min.js"></script>
<script>
$(document).ready(function() {
$("#employeetable").DataTable({
"ajax": {
"url": "/Employee/GetData",
"type": "GET",
"datatype":"json"
},
"columns": [
{ "data": "Name" },
{ "data": "Postion" },
{ "data": "Office" },
{ "data": "Age" },
{ "data": "Salary" },
]
});
});
</script>
}