Since I want to realize downloading large size file (> 4GB) from my ASP.NET Core backend, many articles point out that HttpResponse.TransmitFile in the .NET Framework could achieve my goal.
However, it seems that HttpResponse.TransmitFile is no longer available in .NET Core.
Does anyone know what the alternative to HttpResponse.TransmitFile is in .NET Core? I can't tell you how much I appreciate your relevant answers.
You can use below sample to implement the requirement. For more details, you can check the blogs Streaming Zip on ASP.NET Core.
For zip:
This solution has all the same advantages of our previous non-Core solution: