CodeSwissKnife

Focus on Productivity with Secure, Offline Developer Tools

Download
blog

How to Implement Entity Framework Core Migrations in a .NET Console Application Using C# and VSCode

Introduction to Entity Framework Core Migrations In the previous articles, I discussed how to integrate SQLite with a .NET console application using C# and VSCode, and how to use Dapper for data access. You can find those articles at these links: SQLite with .NET Console Application, Using Dapper and Entity Framework Core in .NET Applications. […]

Ottorino Bruni 
blog

How to Integrate SQLite with .NET Console Application Using C# and VSCode

Introduction to Database and SQL In today’s software development landscape, managing data efficiently is crucial, even for simple applications. Whether you’re building a small tool or a complex system, having a reliable database to store and retrieve data is essential. For developers looking to quickly integrate a database into their .NET console applications, SQLite offers […]

Ottorino Bruni 
blog

How to Secure User Secrets on Your Development Environment in ASP.NET Core?

Introduction: Safeguarding Sensitive Data in ASP.NET Core Development When developing applications, we increasingly rely on various services, such as databases and cloud platforms. This reliance necessitates storing connection strings and credentials, which is commonly done in configuration files. However, this approach poses significant risks. Storing sensitive data in configuration files can lead to inadvertent exposure, […]

Ottorino Bruni 
blog

ASP.NET Core Health Checks and Monitoring: Building Resilient Cloud Applications

Introduction to Resilience In today’s world, developing an application with a cloud-first approach has become the standard. This approach ensures that applications are scalable, flexible, and can handle the dynamic demands of modern usage. One of the key aspects often discussed in this context is resilience. But what exactly is resilience? Resilience in software development […]

Ottorino Bruni