Open silkentrance opened 3 years ago
In the Dot.Net code you use
[HttpGet] [Route("/countries")] public IEnumerable<Country> countries() { return context.Country.ToList(); }
this will cause the application to stream out the existing countries, not necessarily pre-rendering the whole shebang to a single JSON/Text.
In the Dot.Net code you use
this will cause the application to stream out the existing countries, not necessarily pre-rendering the whole shebang to a single JSON/Text.