Im new to .NET, entity framework, delegates etc.
What i am trying to do is to use datatables in ASP.NET MVC5 application..
i am following this tutorial
http://www.codeproject.com/Articles/155422/jQuery-DataTables-and-ASP-NET-MVC-Integration-Part
its the part 1 actually. and datatables showing data fine if not filtered. but when i try to filter,i get error.
Below are screenshots of errors.
This is a demo table for learning purpose. It shows the categories in my database table..
I have this entity class for categories
public class Category
{
public virtual int CategoryID { get; set; }
public virtual int ParentCategory { get; set; }
public virtual string Name { get; set; }
[Column(TypeName = "ntext")]
public virtual string Description {get;set; }
public virtual ICollection<Product> Products { get; set; }
}
Here is the controller i am using for serving ajax purpose of datatables.
public ActionResult CategoriesList_DT(jQueryDataTableParamModel param)
{
var allCategories = _db.Categories;
IEnumerable<Category> filteredCategories;
if (!string.IsNullOrEmpty(param.sSearch))
{
//Used if particulare columns are filtered
var nameFilter = Convert.ToString(Request["sSearch_1"]);
var descriptionFilter = Convert.ToString(Request["sSearch_2"]);
//Optionally check whether the columns are searchable at all
var isNameSearchable = Convert.ToBoolean(Request["bSearchable_1"]);
var isDescriptionSearchable = Convert.ToBoolean(Request["bSearchable_2"]);
filteredCategories = _db.Categories
.Where(c => isNameSearchable && c.Name.ToLower().Contains(param.sSearch.ToLower())
||
isDescriptionSearchable && c.Description.ToLower().Contains(param.sSearch.ToLower()));
}
else
{
filteredCategories = allCategories;
}
var isNameSortable = Convert.ToBoolean(Request["bSortable_1"]);
var isDescriptionSortable = Convert.ToBoolean(Request["bSortable_2"]);
var sortColumnIndex = Convert.ToInt32(Request["iSortCol_0"]);
Func<Category, string> orderingFunction = (c => sortColumnIndex == 1 && isNameSortable ? c.Name :
sortColumnIndex == 2 && isDescriptionSortable ? c.Description :
"");
var sortDirection = Request["sSortDir_0"]; // asc or desc
if (sortDirection == "asc")
filteredCategories = filteredCategories.OrderBy(orderingFunction);
else
filteredCategories = filteredCategories.OrderByDescending(orderingFunction);
var displayedCategories = filteredCategories.Skip(param.iDisplayStart).Take(param.iDisplayLength);
var result = from c in displayedCategories select new[] { Convert.ToString(c.CategoryID), c.Name, c.Description };
return Json(new
{
sEcho = param.sEcho,
iTotalRecords = allCategories.Count(),
iTotalDisplayRecords = filteredCategories.Count(),
aaData = result
},
JsonRequestBehavior.AllowGet);
}
and this is the js script for jquery datatables.
@section Scripts {
<script type="text/javascript">
$(document).ready(function () {
var oTable = $('#datatable').dataTable({
"bServerSide": true,
"sAjaxSource": "@Url.Action("CategoriesList_DT", "Categories", new { area = "Admin" })",
"bProcessing": true,
"aoColumns": [
{
"sName": "ID",
"bSearchable": false,
"bSortable": false,
"fnRender": function (oObj) {
return '<a href=\"Company/Details/' + oObj.aData[0] + '\">View</a>';
}
},
{ "sName": "Name" },
{ "sName": "Description" }
]
});
});
</script>
}
I am not sure what error i am getting and why i am getting this error. surely i am new to this.. Also if possible plz tell me what should be the right way of implementing datatables if i am not doing it right.