You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
I'm attempting to upgrade a project from .NET Core 3.1 to 6.0 and using [3.0.0-preview.19] of DataTables.AspNet.Core and DataTables.AspNet.AspNetCore.
A new error popped up on the upgrade and I'm not quite sure what it is asking for. My code that worked with .NET 3.1 and a previous 2.x package looks like this:
public DataTablesJsonResult DataTablesGet([ModelBinder(typeof(DataTables.AspNet.AspNetCore.ModelBinder))]IDataTablesRequestrequestModel){if(requestModel==null){returnnew DataTablesJsonResult(null,true);}[...]
var dtResponse = DataTablesResponse.Create(requestModel, totalCount, filteredCount, data);returnnew DataTablesJsonResult(dtResponse,true);}}
This error is created on both DataTablesJsonResult usages and the DataTableResponse.Create use. What am I missing?
The text was updated successfully, but these errors were encountered:
I'm attempting to upgrade a project from .NET Core 3.1 to 6.0 and using
[3.0.0-preview.19]
ofDataTables.AspNet.Core
andDataTables.AspNet.AspNetCore
.A new error popped up on the upgrade and I'm not quite sure what it is asking for. My code that worked with .NET 3.1 and a previous 2.x package looks like this:
This error is created on both
DataTablesJsonResult
usages and theDataTableResponse.Create
use. What am I missing?The text was updated successfully, but these errors were encountered: