diff --git a/nuget/Package.MVC.1.1.1.nuspec b/nuget/Package.MVC.1.1.1.nuspec
new file mode 100644
index 0000000..9c93b24
--- /dev/null
+++ b/nuget/Package.MVC.1.1.1.nuspec
@@ -0,0 +1,28 @@
+
+
+
+ jQDataTables.ServerSide.MVC5
+ jQDataTables.ServerSide.MVC5
+ 1.1.1
+ Vladimir Dimov
+ Vladimir Dimov
+ https://github.com/VladimirDimov/jQuery-Datatables-Server-Side-Processing/blob/master/License.md
+ https://github.com/VladimirDimov/jQuery-Datatables-Server-Side-Processing
+
+ false
+ MVC component which adds functionality for automatic server side processing for the famous table plugin for jQuery - DataTables. Supports paging, searching, sorting and custom filters (Less Than, Less than or equal, Greater than, Greater than or equal and Equal) and nested objects.
+
+ - draw parameter fixed on the server side;
+
+ MVC component which adds functionality for automatic server side processing for the famous table plugin for jQuery - DataTables. Supports paging, searching, sorting and custom filters (Less Than, Less than or equal, Greater than, Greater than or equal and Equal) and nested objects.
+ Copyright 2017
+ data table datatable serverside jquery datatables data-tables mvc asp mvc5 server side server-side
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/nuget/Package.WebApi.1.1.2.nuspec b/nuget/Package.WebApi.1.1.2.nuspec
new file mode 100644
index 0000000..f659780
--- /dev/null
+++ b/nuget/Package.WebApi.1.1.2.nuspec
@@ -0,0 +1,27 @@
+
+
+
+ jQDataTables.ServerSide.WebApi
+ jQDataTables.ServerSide.WebApi
+ 1.1.2
+ Vladimir Dimov
+ Vladimir Dimov
+ https://github.com/VladimirDimov/jQuery-Datatables-Server-Side-Processing/blob/master/License.md
+ https://github.com/VladimirDimov/jQuery-Datatables-Server-Side-Processing
+ false
+ WebApi component which adds functionality for automatic server side processing for the famous table plugin for jQuery - DataTables. Supports paging, searching, sorting and custom filters (Less Than, Less than or equal, Greater than, Greater than or equal and Equal) and nested objects.
+
+ - draw parameter fixed on the server side;
+
+ WebAPI component which adds functionality for automatic server side processing for the famous table plugin for jQuery - DataTables. Supports paging, searching, sorting and custom filters (Less Than, Less than or equal, Greater than, Greater than or equal and Equal) and nested objects.
+ Copyright 2017
+ data table datatable serverside jquery datatables data-tables WebApi asp WebAPI api API server side server-side
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/JQDT.MVC/JQDataTableAttribute.cs b/src/JQDT.MVC/JQDataTableAttribute.cs
index 502f08a..ab6dbb5 100644
--- a/src/JQDT.MVC/JQDataTableAttribute.cs
+++ b/src/JQDT.MVC/JQDataTableAttribute.cs
@@ -215,7 +215,8 @@ private ActionResult FormatResult(object resultModel)
var jsonResult = new JsonResult
{
JsonRequestBehavior = JsonRequestBehavior.AllowGet,
- Data = resultModel
+ Data = resultModel,
+ MaxJsonLength = int.MaxValue
};
return jsonResult;