Category: Uncategorized

Step-by-Step Guide: Creating a Bootable USB from an ISO Image using PowerShell

Embarking on the journey to create a Windows bootable USB installer can often seem daunting, particularly when the convenience of an Internet connection is absent to download the necessary software for creating bootable media. However, there’s a silver lining – PowerShell. Bundled with the most recent iterations of Windows, PowerShell is a powerful tool that…



How to view the SQL Generated by Entity Framework

How to view the SQL Generated by Entity Framework Entity Framework follows the following three steps. Translate C# code into SQL statements Execute SQL on a target database Return values back to C# objects. Now the question is how the generated SQL statements look like and how we can view the SQL executed on the…