2017-11-14 5 views
0

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> 
    } 

답변

1

이 줄 db.Employees.Where(Employee => Employee.Name == "John") 현재 기능적으로 아무것도하지 않는 작동합니다. 이름이 John 인 직원에 대해 db를 쿼리 한 다음 해당 데이터로 아무 것도하지 않습니다. 난 당신이에 대한 참조를 그래서 변수에 필터링 된 데이터를 할당 한 다음 JSON의 일환으로 데이터를 반환해야 당신이

List<Employee> empList = db.Employees.Where(Employee => Employee.Name == "John").ToList(); 

return Json(new { data = empList }, JsonRequestBehavior.AllowGet); 

을 원한다고 생각

0

를 생성합니다.

필터링 된 하위 집합을 가져 오는 LINQ 쿼리 (이 줄 db.Employees.Where(Employee => Employee.Name == "John");)가 있지만 그 쿼리를 실행하지 않았거나 그 결과를 사용하여 결과를 반환하지 않았습니다.

필터링 된 결과 만 반환합니다. 이

var filteredList = db.Employees.Where(e=> e.Name == "John").ToList(); 
return Json(new { data = filteredList }, JsonRequestBehavior.AllowGet);