The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
RRRajapandi Ravi Syncfusion Team September 3, 2021 07:34 AM UTC
Hi Dimitar,
Greetings from Syncfusion support
We are able to reproduce your reported issue from our end. And we have forwarded your query to our internal team, and we need some time to validate. So, we will update you the details on Tuesday, 7th Sep 2021. Until then we appreciate your patience.
AGAjith Govarthan Syncfusion Team September 8, 2021 04:34 PM UTC
Hi Dimitar,
Sorry for the delayed update.
Query: After filtering boolean or datetime column 'Argument types do not match' on the backend
We have checked the reported behavior and found that by default, .net Core 3 uses System.Text.Json instead of Newtonsoft for serializing. So, the boolan value is converted as JSON Element which is the cause of this issue. So, we suggest you add the below newtonsoftserilization in startup page to avoid the type mis match issue in the backend. Please refer the below code example for your reference.
Code Example:
Startup.cs
services.AddMvc().AddNewtonsoftJson(options =>
{
options.SerializerSettings.ContractResolver = new Newtonsoft.Json.Serialization.DefaultContractResolver();