|
Hey Reader, In today’s tutorial, I’ll walk you through how to use Dapper, a high-performance micro ORM (object-relational mapper) with a .NET 8 Web API and SQL Server. We’ll cover everything you need to know to build a simple CRUD (Create, Read, Update, Delete) application. Watch on YouTube 📺Check out the full tutorial on YouTube to see everything in action 👇 What We’ll Be DoingWe’re going to work with a simple video game database to start. You’ll learn how to:
First, we’ll set up our Web API using Visual Studio, configure the project, and add Dapper as a NuGet package. Once everything's set, we’ll create a model for our video games that mirrors the database structure: ID, title, publisher, developer, and release date. Next up, you’ll see how to establish a connection to the SQL Server using a connection string in the Why Dapper?Dapper gives you full control over your SQL queries. While it doesn’t auto-generate queries like Entity Framework, Dapper ensures everything stays efficient and lightweight, making it ideal for high-performance apps. Plus, if you're working in an environment where you're dealing with an existing database or a team that handles the database design, Dapper might be perfect for you! Step-by-Step Guide1. Set up the Project:First, let's create a new ASP.NET Core Web API project in Visual Studio. Make sure to select .NET 8. 2. Install Dapper:In the NuGet Package Manager, search for and install 3. Create a Video Game Model:Add a new folder called 4. Add a Connection String:Next, open the 5. Create a Repository Interface:Add a new folder called 6. Create the Repository Implementation:Now, create a class that implements the First, we inject IConfiguration, so that we get access to the connection string from the appsettings.json file. It is necessary to create a connection to the database each time we want to run a query. We also add a little function to create the connection whenever we need it. Next, we implement all the CRUD operations. Let's start with the easy one, receiving all video games. Let's also create the VideoGamesController and add the corresponding GET method there. Last step is registering the repository in the Program.cs. Now we can run the application and test the first call with Swagger. Awesome! Now, let's continue with the other CRUD operations - receiving a single video game, adding a video game, updating and deleting one. Please note, that we're using parameters here. Otherwise, we would risk SQL injection attacks. Don't forget the corresponding controller methods. Wrapping UpNow you have a fully functional API that can interact with a SQL Server database using Dapper. You understand how to fetch data from the database, add new records, update existing ones, and delete records you no longer need. What's your experience with Dapper? Is it your goto tool in your projects or would you rather use Entity Framework or something else? Happy coding and have an awesome weekend! Take care, Patrick PS: Need help understanding .NET & Blazor? There are two ways I can help you with:
PPS: Would you like to sponsor this newsletter? Click here. 💌 |
Become a .NET & Blazor expert with weekly tutorials featuring best practices and the latest improvements, right in your inbox.
Hey friend, I just released a new video and I think you’ll enjoy it. In the video, I ask GitHub Copilot to build a .NET Web API using a short, vague prompt. The result works, but the structure feels random and messy. Then I run the same idea again with a stronger prompt that forces a clean structure. Feature folders. Vertical slice. Mediator. Fluent Validation. The difference is night and day. Watch the video here 👇 Enjoy the breakdown and let me know what you think. Take care, Patrick P.S....
Hey friend, I just released a new video showing a better way to use GitHub Copilot in real .NET projects. Watch it here 👇 If you ever felt like Copilot starts strong but then your code slowly turns into chaos, you’re not alone. It happens to most developers when they start using AI without giving it the right guidance. In the video, I show you one simple file you can add to your project that keeps your code clean, structured, and consistent. No guessing. No random patterns. Just a clear...
Hey friend, I just published a new video that walks you through how to upgrade to .NET 10. Watch it here 👇 If you're already trying the update, you may have seen this: the app builds no errors but… Blazor doesn't load That happened in my project too. And the fix is small, but easy to miss. In the video, I show: how to update the target frameworks how to update NuGet packages what changed for Blazor and how to fix the missing static assets issue No hype. Just a clear step-by-step walkthrough....