We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

VS 2019 .NET Core 3 Preview

Hello. I tried to test my project on VS 2019 .NET Core 3 Preview 3. Excel Export and Excel Filter do not work. And also the search returns incorrect results:



Regards.

6 Replies

CO Costa March 25, 2019 09:31 AM UTC

P.S. See sample project in the attachment.

Attachment: AspNetCore3_EJ2_ExportExcel_21c0b076.zip


CO Costa March 25, 2019 12:37 PM UTC

In my example, there is no tag allowExcelExport = "true", but even with it, the export still does not work.


TS Thavasianand Sankaranarayanan Syncfusion Team March 26, 2019 12:19 PM UTC

Hi Costa, 

Greeting from Syncfusion. 

Query: And also the search returns incorrect results: 

We have validated the provided sample and search function is working properly in Grid. By default, we have used contains operator for searching so it return all values(which contains search key). 

 

If we misunderstood you query then share more details or video to demonstrate the issue. It will be more helpful for us to validate further and to provide a better solution as soon as possible. 

Query: there is no tag allowExcelExport = "true", but even with it, the export still does not work 
 
We have checked with our end and we are getting the 500 internal exception while exporting. By default, we have send the request to get all data(2000) from server to export the data in Grid. When using large amount(2000) of data with asynchronous cause 500 exception issue in ASP.NET Core 3.0. Please check the below reference link for more information  
 

Regards, 
Thavasianand S. 



CO Costa March 27, 2019 03:46 AM UTC

Hi. As far as I understand, the Excel filter does not work for the same reason (500 exception issue in ASP.NET Core 3.0).
All clear. Thanks.


CO Costa March 27, 2019 09:30 PM UTC

I will add that the problem can be solved by placing the following code in Startup.cs:

services.Configure<IISServerOptions>(options =>
{
     options.AllowSynchronousIO = true;
});


MS Madhu Sudhanan P Syncfusion Team March 28, 2019 03:56 AM UTC

Hi Costa, 
  
Thanks for the update. Please let us know if you need further assistance. 
  
Regards, 
Madhu 


Loader.
Up arrow icon