TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About EF Core
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jitendra Mesavaniya (5)
Jay Krishnareddy (4)
Debasis Saha (4)
Anup Hosur (4)
Sarathlal Saseendran (3)
Thiago Vivas (3)
Mahesh Chand (3)
Chethan N (2)
Cecil Phillip (2)
Vitalii Honcharuk (2)
Tanuj Gyan (2)
Rebai Hamida (2)
Jignesh Trivedi (1)
Arpit Shrivastava (1)
Tural Suleymani (1)
Vaishali Vishwakarma (1)
Darshan Adakane (1)
Munib Butt (1)
Jayraj Chhaya (1)
Vineet Desai (1)
Fiyaz Hasan (1)
Ravi Raghav (1)
Chintan Sukhadiya (1)
Hussain Patel (1)
Kirtesh Shah (1)
Ankush Agnihotri (1)
Nandkishor Yadav (1)
Charalambos Hadjiantoniou (1)
Jignesh Kumar (1)
Konstantin Triger (1)
Shahzad Ujan (1)
Avnish Kumar (1)
Mithun Pattankar (1)
Akhil Mittal (1)
Guest User (1)
Santhakumar Munuswamy (1)
Related resources for EF Core
No resource found
Introduction To Entity Framework Core
9/12/2024 5:45:08 AM.
Explore the basics of Entity Framework Core in this introduction. Learn how EF Core simplifies data access in .NET Core applications through Object-Relational Mapping (ORM).
Entity Framework Core Code-First Approach with Seed Data
9/9/2024 7:11:51 AM.
It will be beneficial to beginners who are struggling with Entity Framework Core and Creating Code-First Approach. The EF-Core Code-First approach involves creating domain classes first and then gener
EF Core Query Tags: What They Are and How to Use Them
7/29/2024 11:25:31 AM.
Discover the power of EF Core Query Tags in optimizing and debugging your database queries. This guide explains what query tags are, their benefits, and how to implement them in your Entity Framework
Practical approach to EF Core with Scalar functions
7/21/2024 6:32:25 PM.
Learn how to implement and migrate scalar SQL functions in an ASP.NET Core application using Entity Framework Core. This guide covers creating a scalar function to calculate total unit prices, integra
How to Start a Project in C#?
7/18/2024 10:28:53 AM.
This article guides you through starting a C# project, including setting up Visual Studio or Visual Studio Code, creating a new project, and configuring essential features like dependency injection, c
Using EF Core to Scaffold DbContext and Models from Existing Database Tables
7/12/2024 8:14:08 PM.
In this article, we will see how using Scaffolding we can generate database context (DbContext) class for database and model of entities in that database's table. We will be using MS SQL Server as
Building a .NET Web Application
6/7/2024 10:23:28 AM.
In my first two articles, we first looked at the four common types of .NET applications we may find in the field. We briefly discussed these four types of applications and then in the second article,
LINQ Query Syntax vs Method Syntax in Entity Framework
5/29/2024 4:39:33 AM.
Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Met
Eager Loading and Lazy Loading in Entity Framework
5/28/2024 5:29:38 AM.
Entity Framework (EF) is a popular Object-Relational Mapping (ORM) framework for .NET. Understanding these concepts is crucial for improving the performance and efficiency of your applications.
Count vs. Any in Entity Framework for Efficient Querying in .NET
5/24/2024 6:13:05 AM.
Entity Framework (EF) is a powerful Object-Relational Mapper (ORM) for .NET, allowing developers to interact with databases using .NET objects. When working with EF, it's crucial to write efficien
Tips for Improving Performance in Entity Framework
5/15/2024 5:30:04 AM.
Optimizing Entity Framework performance, particularly in EF Core, is crucial for efficient data access. These strategies, like eager loading and compiled queries, enhance responsiveness and reduce ove
Working With Temporal Tables In EF Core 6.0
4/18/2024 8:46:18 AM.
Get started with creation of SQL Server Temporal Tables using Entity Framework Core 6.0 Code First approach and querying the historical data using LINQ.
Create a Single Page App with Blazor Server and Entity Framework Core 3.0
4/16/2024 5:34:48 AM.
Create dynamic web applications efficiently using Blazor Server, a .NET Core framework, coupled with Entity Framework Core 3.0 for seamless data integration. Leverage C# to build interactive, single-p
Combine ADO.NET, EF Core And Dapper In Same Blazor App
4/15/2024 11:09:08 AM.
Discover the power of combining ADO.NET, EF Core, and Dapper within a single Blazor application. Seamlessly integrate these data access technologies to leverage the strengths of each, enhancing perfor
Pagination in a .NET with EF Core
4/15/2024 5:20:15 AM.
Pagination allows you to retrieve a large number of records split into pages instead of returning all the results at once. In this article, I present how to implement OffSet and Keyset pagination in a
What's new in .NET 9? .NET 9 Preview 3
4/12/2024 4:59:05 AM.
We're excited to announce the release of .NET 9 Preview 3, packed with new features and improvements across .NET Libraries, Runtime, and SDK. This preview release brings enhancements aimed at boos
Entity Framework Core Triggers In Action (Unofficial Package)
3/7/2024 8:44:28 AM.
This article shows you how to work with database triggers in Entity Framework Core using a third-party library and Entity Framework Core Triggers with this unofficial package, enhancing database opera
Visual Studio Extension For Blazor SPA With EF Core 3.1
2/29/2024 10:08:48 AM.
In this post, we will see how to download the newest extension on Blazor Server for Visual Studio 2019. Using this extension, we can easily create a Blazor Server app with Entity framework 3.1. This
Create a Minimal API with ASP.NET Core and Entity Framework
1/22/2024 10:57:47 AM.
This article explains the concept of minimal APIs, their advantages, and steps to implement CRUD operations. Explore the flexibility and simplicity of minimal APIs for building efficient HTTP APIs. Th
Working with Noda Time, .Net and Entity Framework (EF core)
1/15/2024 7:14:56 AM.
Working with NodaTime with EF core which is a alternative DateTime framework for .net applications.
Dapper Vs Entity Framework Core
10/27/2023 10:01:55 AM.
In this article, we are going to learn about the ORM tools which we commonly used in our day-to-day projects and its benefits
CRUD Operations with EF Core 7 in Blazor WebAssembly
8/3/2023 6:26:52 AM.
In this article, we will discuss related to the perform the CRUD operation in Blazor Web Assembly-based application.
EF Core in .NET 7 API
7/13/2023 5:57:14 AM.
Using EF Core in .NET 7 API
Develop REST API-based CRUD Operation using Azure Function and EF Core 7
7/10/2023 7:06:34 AM.
In this article, we will develop REST API with the help of Azure Function. For database-related operations, we will use the Entity Framework Core 7.
Entity Framework 7.0 - Top 8 Reasons to use it in .Net Application
6/10/2023 8:31:27 PM.
Entity Framework is not new to us. But in Entity Framework Core 7.0, there are several changes due to which it is now more useful compared to earlier versions. In this article, we will discuss the new
Run EF Core Database Operations in Background
5/2/2023 3:45:49 PM.
This article will teach you to implement generic pattern in C# which helps you to perform any type of operations in the background using SOLID principles, Specially EF core database operations.
Get Started With ASP.NET Core Web API With Entity Framework core
3/27/2023 3:33:31 AM.
Tutorial to create ASP.NET Core Web API using Entity Framework Core - NET 6.0 - using EF Core Power Tools
Did You Hear About Query Filters In Entity Framework Core?
2/20/2023 11:25:34 AM.
In this article, we can learn about Global Query Filters in Entity Framework Core in .NET is a feature that allows us to apply filters to all queries of a specific entity type.
Web API 3 Layers Architecture With .NET 6
11/9/2022 7:02:54 AM.
This article will explain one of the most used software architectural patterns, the 3 layers architecture. Besides the theoretical explanation of the 3 layers architecture, it will also be given a pra
Introduction Of The Entity Framework Core 6.0
10/12/2022 7:21:02 AM.
In this article, you will learn about Entity Framework Core 6.0.
Entity Framework Core 6 With Database First
9/26/2022 7:11:54 AM.
In this article, you will learn about Entity Framework Core 6 With Database First.
Deep Dive into Many-to-Many: A Tour of EF Core 5.0 pt. 2
9/1/2022 5:01:24 AM.
On the surface many-to-many in EF6 and EF Core look very similar. However, under the covers the design in EF Core 5.0 is much more flexible and powerfulIn this episode, Arthur Vickers returns to cha
Restful API In .NET Core Using EF Core And Postgres
7/5/2022 4:37:34 AM.
In this article, you will learn about Restful API in .NET Core using EF Core and Postgres.
Caching In Entity Framework Core Using NCache
6/24/2022 9:03:16 AM.
It will be explained in this article how to integrate Entity Framework Core with a caching engine using NCache. The article will be given a practical example of how we could set up our Entity Framewor
Caching In Entity Framework (EF) Core Using NCache
6/3/2022 6:03:33 AM.
In this article, you will lean about caching in Entity Framework (EF) Core using NCache.
EF Core - Effectively Decouple The Data And Domain Model
3/4/2022 7:25:36 AM.
In this article. you will learn about effectively decoupling the data and domain model.
Advanced Entity Framework Core: Extract data access layer with migrations to the library project and Execute migrations from the command line
1/11/2022 3:14:14 AM.
See code examples in this article: Let's imagine you have a solution with many projects including a web application with the name "MiniService", which contains appsettings.json and
Advanced Entity Framework Core Tips In Practice: Concurrency, Query filters and SaveChanges Method Abilities💪
1/11/2022 3:11:26 AM.
I am describing the practical aspects of working with Entity Framework Core. In this article I am touching Concurrency token and RowVersion, on save changes interceptor with a bunch of usefu
Angular 11 App To Do CRUD Operations On Azure Cosmos DB With .NET 5 REST API
12/31/2021 6:37:05 AM.
In the previous article, we will learn how to create a .NET 5 API that can do CRUD operations on Azure Cosmos DB using EF Core. We will continue this article to build an Angular 11 app to connect to t
Create A .NET 5 App To Perform CRUD Operations On Azure Cosmos DB (SQL API) Using EF Core
12/27/2021 5:13:37 AM.
In this article, you will learn how to create a .NET 5 App to perform CRUD operations on Azure Cosmos DB (SQL API) using EF Core.
Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In .NET Core 3.1 Using MVC Core
4/21/2021 10:58:30 AM.
This article demonstrates how to export functionality with different types of file formats like excel, pdf, word, csv, json, xml and text files using a .net core 3.1 application. I have implemented th
A Tour of EF Core 5.0 pt 1
1/6/2021 5:54:23 AM.
EF Core 5.0 includes support for many-to-many relationships and TPT mapping, two sorely missed features from EF6. Join us for a whirlwind tour where we compare EF Core 5.0 features with those from cla
What Is The Future Of Entity Framework
10/30/2020 2:19:57 AM.
Watch this video to learn about the future of Entity Framework and what is the future of EF and EF Core.
Using EF Core - Power Tools In ASP.NET Core API
8/24/2020 7:45:28 PM.
In this article, we will learn how to integrate EF Core power tools and its usage to generate POCO Classes in Core API.
Query And Mutation In GraphQL - Part Two
8/6/2020 2:02:40 PM.
In this article, you will learn about Query And Mutation In GraphQL.
Introduction To GraphQL
8/6/2020 9:00:08 AM.
In this article, you will learn about GraphQL.
Azure Cosmos DB - SQL API Using EF Core
7/6/2020 6:54:52 AM.
In this article, you will learn about Azure Cosmos DB - SQL API Using EF Core.
Exploring Azure Functions HTTP Trigger Using EF Core
6/10/2020 8:35:38 AM.
In this article you will learn how to explore Azure Functions HTTP Trigger sing EF Core.
EF Core - SELECT DISTINCT on a Few Columns Only
4/26/2020 2:53:51 PM.
In this article, you will learn about implementing EF Core - SELECT DISTINCT on selected columns only.
Simple Scaffolding CRUD Operations in ASP.NET Core Using EF Core DB First Approach
4/13/2020 10:29:29 PM.
In this article, we will perform simple Scaffold CRUD operations in ASP.NET Core using EF Core
Build an ASP.NET Core API Using the Existing Database
1/31/2020 7:26:27 AM.
This article will show you how to build a Web API with the new ASP.NET Core 3.0.
Implement CRUD Operations With Sorting, Searching And Paging Using EF Core In ASP.NET Core
11/1/2019 1:24:25 AM.
In this article, we will demonstrate how to create an application using EF Core and Asp.Net Core. In this application, we also discuss about sorting, paging and filtering data.
Creating POCO Class Library Using Reverse Engineering
1/31/2019 8:51:14 AM.
In this article, we will learn how to create a POCO class library by the reverse engineering technique using EF Core Power Tools in Visual Studio 2017.
Understanding Entity Framework Core And Code First Migrations In EF Core
11/17/2018 11:53:17 AM.
In the previous articles (data access approach, code first approach, and WebAPI) we learned a lot about entity framework and its practical implementations. The intent of this article is to explain the
Learn EF Core 2.1 Features
5/23/2018 9:48:29 AM.
EF Core 2.1 is the latest version of Entity Framework Core announced at Build 2018. Here is a list of new features in this verision.
Build Persisting Layer With ASP.NET Core 2.0 And EF Core 2.0 Using Code First Approach
5/15/2018 3:27:11 PM.
I wrote this article when framework Core 1.0 was introduced as a stable version. But now, we have a lot of changes in the current version Core 2.1.
ASP.NET Core And EF Core 2.0 Testing
12/29/2017 4:41:25 PM.
The single biggest selling point of MVC architecture in general and ASP.NET Core in particular is that it makes testing much simpler. ASP.NET team has done a great job in making a framework that is pl
What's New In Entity Framework Core 2.0
9/27/2017 11:52:52 AM.
Entity Framework Core is a lightweight, extensible, and cross-platform version of the popular Entity Framework data access technology. Entity Framework 2.0 is the latest release of EF.
Build Persisting Layer With ASP.NET Core And EF Core Using PostgreSQL And SQL Server 2016
10/14/2016 12:29:57 PM.
In this article, you will learn how to build persisting layer with ASP.NET Core and EF Core, using PostgreSQL and SQL Server 2016.
Getting Started With ASP.NET Core, EF Core Using SQL Server On Windows
10/12/2016 5:40:18 PM.
In this article, we will discuss how we can develop the User Management application, using ASP.Net Core with Entity Framework Core in Windows.