Explore >> Select a destination


You are here

blog.codefarm.me
| | damienbod.com
4.7 parsecs away

Travel
| | This post implements a basic ASP.NET Core API using .NET 9 and the Microsoft OpenAPI implementation. The OpenAPI Nuget package supports both Controller based APIs and minimal APIs. Until now, we used excellent solutions like NSwag to produce the API schemas which can be used to auto-generate client code. Code: https://github.com/damienbod/WebApiOpenApi Setup A .NET 9...
| | www.tpeczek.com
4.3 parsecs away

Travel
| | In this post I'm closing the circle around streaming JSON objects (NDJSON) in .NET by discussing receiving NDJSON based request in ASP.NET Core.
| | www.darrenhorrocks.co.uk
4.2 parsecs away

Travel
| | Building APIs that handle large datasets can be a challenge. A common approach is to collect all the data into a list, convert it to JSON, and then send it all at once. But what happens when that dataset is massive? Your API might freeze up while it's building the response, and you could end up with a huge memory footprint. Fortunately, ASP.NET Core provides a great solution for this problem: IAsyncEnumerable.
| | www.django-rest-framework.org
51.7 parsecs away

Travel
| Django, API, REST, Viewsets