I'm using Radzen for Blazor and trying to use export to excel functionality. But I'm not using the entity framework, I`m using stored procedures with passing parameters. Is there a way to use it without entity framework and store document in xlsx format?
Hi @nettkkaa,
We are not using exactly OData but similar to OData technique to perform exporting. The idea is to do it server-side (MVC side) since you cannot export files through the Blazor socket connection. I’m sure you can create your custom controller for export - everything needed is already part of the application.