예제 #1
0
파일: TermController.cs 프로젝트: zce/micua
        public ActionResult Index()
        {
            var terms = TermService.Query();

            return(Json(terms.Select(t => new { t.Id, t.Name, t.Description }), JsonRequestBehavior.AllowGet));
        }