Hey Reader, Today, I'd like to show you two powerful tools for managing data in .NET projects: Entity Framework and Dapper. I'm sure you already heard about them. First, let me explain what an ORM is and then walk you through examples of CRUD (Create, Read, Update, Delete) operations using both tools. Watch on YouTube πΊCheck out the full tutorial on YouTube to see everything in action π What is an ORM?An ORM (Object-Relational Mapper) is a tool that helps your application communicate with a database. Instead of writing complex SQL queries, an ORM allows you to work with database data as if it were just regular objects in your programming language. This makes it easier to manage data, as you don't need to write as much SQL code. It's like a translator that turns your code into commands that the database can understand. CRUD Operations with Entity FrameworkEntity Framework (EF/EF Core) is a comprehensive ORM developed by Microsoft. It handles data management tasks like querying, saving, and updating with minimal manual SQL. Let's see how to perform CRUD operations with EF: 1. CreateTo add a new video game character to the database:
Here, we create a new 2. ReadTo retrieve a character's details:
We use 3. UpdateTo update a character's weapon:
After finding the character, we change its 4. DeleteTo remove a character from the database:
We locate the character, remove it from the context, and then save the changes to delete it from the database. CRUD Operations with DapperDapper is a lightweight and fast micro-ORM that requires more manual SQL coding. It provides fine-grained control over SQL operations, making it ideal for performance-critical applications. 1. CreateTo add a new game character:
We use a SQL 2. ReadTo fetch a character's details:
We use a SQL 3. UpdateTo update a character's weapon:
The SQL 4. DeleteTo remove a character:
We use a SQL ConclusionEntity Framework is perfect for projects where you want a comprehensive solution that handles a lot of the database management work for you, while Dapper provides greater control and efficiency, ideal for performance-critical tasks. Both tools have their strengths, and the best choice depends on your specific needs and comfort level with SQL. Try implementing these examples in your projects to see which one fits your workflow best. What's your experience so far with Entity Framework and Dapper? I promise I'll read your reply! π 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 Reader, After 15 years of building web apps, I just recently discovered Vertical Slice Architecture. I know. Iβm late to the party. But wow, this approach really changed how I think about structuring Blazor projects. So I decided to show you a simple, real-world example of how to use Vertical Slice Architecture in a Blazor Server app. π₯ Watch the full tutorial now: In this new tutorial, you'll learn: β How to structure your app with feature folders β How to avoid overcomplicating things...
Hey Reader, In my last videos, we built a solid CRUD API using Vertical Slice Architecture, Minimal APIs, and Carter - super clean and modern. But thereβs still one problem... π What happens when a user sends empty or invalid data? In this new YouTube tutorial, Iβll show you how to fix that with: And yep, the full source code is free to download. Just check the link in the video description. If youβve been enjoying this Vertical Slice series, this is a must-watch. Itβs a simple upgrade that...
Hey Reader, If you're building apps with Blazor, you've probably asked yourself this: π Should I use SSR, Blazor Server, or WebAssembly? Itβs a common question - and I get it a lot. So I made a brand-new YouTube video walking you through how to choose the best one for your app. π₯ Watch it here: If you're building a Blazor app or planning to do so soon, this should help clear up a lot of confusion. Let me know what you think, and feel free to reply if you have any questions. Take care, Patrick...