Introduction Searching for text in a database is one of the most common operations in web applications. Many developers start with simple LIKE queries, but as applications grow, this approach becomes inefficient and lacks flexibility. Enter Full-Text...
Entity Framework Core (EF Core) makes handling database migrations easier, but running them in a release pipeline can get tricky. Normally, you’d need the .NET SDK and EF CLI tools, which adds extra setup steps. That’s where EFBundles come in! They p...
EF Core is a modern, lightweight, and extensible Object-Relational Mapper (ORM) framework for .NET. It simplifies database interactions by allowing you to work with data as .NET objects (entities) rather than raw SQL queries. This abstraction makes y...
“ Migrations play a crucial role in development. Without a standardized approach to migrating and seeding data, teams can quickly fall out of sync, leading to inconsistencies and deployment issues.” Here I will show some setup and best practices for ...
.NET 8 expands the simplicity and performance benefits of Minimal APIs, providing an alternative to the traditional Controller-based approach in ASP.NET Core. In this walkthrough, we will create a User CRUD application that uses: Entity Framework Co...
Introduction The traditional SEO approach traditionally optimized for a set of targeted keywords, heavily relied on metrics such as keyword density and backlinks. Although those approaches may have some good value, they simply lack to provide the d...
Level Up Your .NET Core Skills: A Comprehensive Roadmap Master the Fundamentals 📚: C# Fundamentals 🦸♂️: Syntax and Data Types 🔢 Object-Oriented Programming (OOP) 🏗️: Classes, Inheritance 🧬, Polymorphism 🎭, Encapsulation 🔒, Abstraction ☁️ ...
Concurrency issues can be a silent nemesis in any application dealing with data persistence. Recently, I found myself grappling with such issues while working on a .NET Core project using Entity Framework Core (EF Core) with a SQLite database. In thi...
This topic will help us to optimize our loading of related data using Entity Framework Apis. Lazy Loading Ef core's default behavior Loads data when it's accessed for the first time Does not load child elements if you didn't ask for it Multiple q...
I recently got a ticket to fix a module and I encounter an error related that can be solve by Change Tracker API. I'm glad that I encounter these kind of errors, it teaches me. It says entity type cannot be tracked because another instance with the ...