I have written my own Restful API and am wondering about the best way to deal with large amounts of records returned from the API.
For example, if I use GET<
GET<
if you are using .net core you have to try this magic package
Microsoft.AspNetCore.ResponseCompression
then use this line in configureservices in startup file
services.AddResponseCompression();
then in configure function
app.UseResponseCompression();