Best of Nick ChapsasDecember 2024

  1. 1
    Video
    Avatar of nickchapsasNick Chapsas·1y

    Make Your API Requests INSANELY Fast in .NET

    Nick demonstrates how to use the Replicant package to significantly improve the performance of API requests by caching responses. The method ensures that repeated API calls are nearly instantaneous by leveraging HTTP headers and caching mechanisms. This approach works with any API and greatly reduces the response time by avoiding duplicate data fetching.

  2. 2
    Video
    Avatar of nickchapsasNick Chapsas·1y

    Writing Safe String Interpolated SQL in .NET

    Learn how to safely use string interpolation in SQL queries within .NET applications without risking SQL injection. The methods covered are applicable across raw ADO.NET, Dapper, and EF Core. Discover how to simplify SQL queries with the Interpolated SQL package and make your code more secure and efficient.