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 Code First
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
George (8)
Jignesh Trivedi (8)
Mithilesh Kumar (6)
Vijay Prativadi (4)
Akhil Mittal (4)
Sandeep Singh Shekhawat (3)
Nimit Joshi (3)
Rajeesh Menoth (3)
Faisal Pathan (3)
Mukesh Kumar (3)
Abhimanyu K Vatsa (2)
Yogeshkumar Hadiya (2)
Jitan Gupta (2)
Debendra Dash (2)
Manoj S Pant (2)
Dipak Talaviya (2)
Nitin Kumar (2)
Arpit Shrivastava (1)
Mukesh Kumar (1)
Sarathlal Saseendran (1)
Shiju Joseph (1)
Xiaoping Wu (1)
Munesh Sharma (1)
Prashant Shinde (1)
Azeem Anzari (1)
Gaurav Gupta (1)
Emiliano Musso (1)
Kundan Jha (1)
Arunava Bhattacharjee (1)
Ramasagar Pulidindi (1)
Smi10 Kalathiya (1)
Tanima K (1)
Rahul Sahay (1)
Anubhav Chaudhary (1)
Rijwan Ansari (1)
Pragati (1)
Vivek Tripathi (1)
Nishan Aryal (1)
Piyush Dixit (1)
Pawan Tiwari (1)
Venkatesh Kumar (1)
Abhishek Yadav (1)
Junaid Shahid (1)
Geo J Thachankary (1)
Kannadasan G (1)
Debasis Saha (1)
Rebai Hamida (1)
Sabyasachi Mishra (1)
Saumya Rout (1)
Rajdip Sarkar (1)
Gaurav Jain (1)
Dhruv Maurya (1)
Safayat Zisan (1)
Akshay Phadke (1)
Shashangka Shekhar (1)
Manish Kumar Choudhary (1)
Pankaj Kumar Choudhary (1)
Manoj Kalla (1)
Related resources for Code First
No resource found
Entity Framework (13), with .Net Core Code-First Summary
10/11/2024 4:35:11 PM.
This is a summary article to discuss .Net Core Entity Framework Code First Approach.
Entity Framework In MVC - Part Three
9/12/2024 12:12:57 PM.
This article explains the Code First approach in MVC using Entity Framework. It covers creating a new database from domain classes, reverse engineering an existing database to generate POCO classes, a
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
Entity Framework (11-1), with .Net Core Razor Pages Code-First (2)
9/4/2024 12:15:27 PM.
This is a discussion for Entity Framework Razor, the second part.
Entity Framework (11), with .Net Core Razor Pages Code-First
9/4/2024 12:14:57 PM.
This article is discussing Entity Framework with .Net Core Razor Pages Code-First.
Entity Framework (12), with New .Net Core MVC Code-First
9/3/2024 2:34:44 PM.
This article discuss the new .Net Core MVC entity framework, code first module.
CRUD Operations In ASP.NET Core Using Entity Framework Core Code First
8/29/2024 7:28:45 AM.
In this article, you will learn about CRUD operations in ASP.NET Core, using Entity Framework Core Code First.
Entity Framework (1), With .Net MVC, Code-First
8/10/2024 2:07:03 PM.
Setup Entity Framework with .Net MVC in Visual Studio 2019, with Code-First approach
Entity Framework (4), With .Net Core MVC, Code-First
8/10/2024 2:06:07 PM.
This article will be Entity Framework with .Net Core MVC, Code-First approach,
Code First Approach In ASP.NET Core MVC With EF Core Migration
6/25/2024 10:07:59 AM.
Explore the Code First approach in ASP.NET Core MVC with EF Core Migration in this comprehensive guide. Learn how to define your database schema using C# classes, create and manage migrations, and kee
Custom Authorization Filter In MVC With An Example
6/14/2024 10:41:04 AM.
Learn how to implement custom authorization filters in ASP.NET MVC using Entity Framework and SQL Server. This tutorial covers creating roles and users, using custom authentication, and controlling a
Code-First Stored Procedure Entity Framework 6.0
6/3/2024 10:06:42 AM.
This content explains how to configure Entity Framework 6.0 and above to use stored procedures with a Code-First approach. It details overriding the OnModelCreating method in DbContext to map stored p
A Simple Step to Entity Framework: Code First Approach
5/17/2024 11:02:24 AM.
Learn the foundational steps of Entity Framework's Code First approach in this straightforward guide. Dive into database development with ease using C# and Visual Studio, mastering Object-Relation
Entity Framework: Code First Data Annotations
5/16/2024 11:28:54 AM.
Entity Framework code First approach allows us to use our POCO (domain) classes as model and Entity framework is use this classes to querying data, change tracking and other updating function.
Pre-Generated Views With a Code First Model Entity Framework 6.0
5/16/2024 5:39:46 AM.
Pre-generated views in Entity Framework 6.0 with a Code First model enhance performance by reducing the cost of view generation at runtime. By pre-compiling these views, you can significantly improve
Entity Framework: Code First Migrations With the Existing Database
5/9/2024 11:52:10 AM.
Explore Entity Framework's Code First Migrations to seamlessly integrate existing databases with your application. Learn efficient techniques for data modeling, schema synchronization, and version
Relationship in Entity Framework Using Code First Approach With Fluent API
5/7/2024 11:23:34 AM.
Learn how to establish relationships in Entity Framework using the Code First approach with Fluent API. Explore configuring one-to-one, one-to-many, and many-to-many relationships using navigation pro
Code First Migrations With Entity Framework
4/30/2024 9:39:59 AM.
This article will provide answers to the following questions relevant to relationships in Entity Framework: whether or not to create a database, how to add / remove a field from an existing table, how
Entity Framework Core in .NET Core: MySQL Code-First Migration
4/30/2024 9:15:07 AM.
This article walks you through how to use EF Core 5.0 in .NET Core 3.1 to implement a code-first approach to create/update a MySQL database on Visual Studio 2019 for a RESTful API application.
Seed Databases in EntityFramework
4/29/2024 9:58:30 AM.
Seeding databases in Entity Framework simplifies initial data setup. Utilize migrations and DbContext to seed essential data, ensuring a consistent database state. This approach streamlines developmen
Enum Support (Code First) in Entity Framework 5
4/24/2024 1:51:17 PM.
Entity Framework 5 introduces enhanced support for enums in Code First development. Enums can now be seamlessly integrated into entity classes, offering a more structured approach to representing fixe
Entity Framework Code First Example
4/24/2024 1:24:22 PM.
Explore an Entity Framework Code First example to understand database modeling in C#. This tutorial demonstrates object-relational mapping (ORM) techniques, using .NET Framework to create entity class
Data Annotations and Code First Migration in Entity Framework
4/24/2024 1:18:51 PM.
Explore the seamless integration of Data Annotations and Code First Migration within the Entity Framework. Learn how to leverage annotations to define data models and relationships, and master the art
Entity Framework 6 CRUD Stored Procedures: Code-First Approach
4/23/2024 11:22:38 AM.
Learn how to implement Insert, Update, and Delete operations using stored procedures in Entity Framework 6 with a Code First approach. This tutorial covers setting up stored procedures, mapping them t
Preview of Dynamic Data and Entity Data For EF 6
4/23/2024 7:23:32 AM.
The preview of Dynamic Data and Entity Data for EF 6 introduces efficient database connectivity and modeling within the .NET Framework. It enables seamless integration of data with code through Entity
Logging Database Operations in Entity Framework
4/22/2024 8:53:24 AM.
Discover Entity Framework 6's new feature: logging database operations. Easily debug and troubleshoot performance issues by logging SQL commands, parameters, timestamps, and more. Customize loggin
Update Data Using Code First Approach
4/22/2024 7:44:10 AM.
Explore updating data with ASP.NET and Entity Framework's Code First approach. Define Employee model, set up DbContext, and create a Webform for user input. Implement logic to update employee det
Select Data With Enums Via EDF Framework 5.0
4/18/2024 8:46:39 AM.
Utilize Entity Framework 5.0 to select data with enums. Employ LINQ queries for efficient data retrieval, leveraging strong-typed enums for enhanced code readability and database querying.
Building ASP.NET Core MVC Application Using EF Core and ASP.NET Core 1.0
2/28/2024 11:00:47 AM.
In this article, We will explain how to build the Applications with ASP.NET Core MVC & Entity Framework Core, using an ASP.NET Core 1.0.
Server Side Rendering Of DataTables JS In ASP.NET Core
2/12/2024 10:04:00 AM.
This article covers the implementation of server-side data configuration in DataTables JS in ASP.NET Core. It explains what DataTables JS is, the need for server-side rendering, creating a .NET Core p
Entity Framework Code First And Migrations: Part Two
11/20/2023 5:31:16 AM.
In this article, you will get an introduction to Entity Framework using C#, code first, and migrations.
Create Database Table Using Entity Framework Code First
8/28/2023 8:44:06 AM.
This article will help you to understand how to work with a database using Entity Framework Code First.
Code First Approach With Stored Procedure
8/1/2023 4:07:44 AM.
This article shows how to access a SQL Server database with the Entity Framework Code First approach and how to create a procedure using the Fluent API.
CRUD Operation Using Entity Framework Code-First
2/7/2023 7:09:22 AM.
In this article you will learn how to use the Code-First approach for better security in ASP.NET MVC.
.NET 7 Entity Framework/EF7 - Install And Code First Migrations
12/22/2022 11:33:10 AM.
In this article, you will learn about .NET 7 Entity Framework / EF7 - Install And Code First Migrations.
.NET 6 - How To Build Multitenant Application
10/31/2022 5:52:45 AM.
In this article, we are going to learn how to build a multitenant application with.NET 6.
Consume Web API By MVC In .NET Core (2), HttpClient
6/28/2022 12:41:20 AM.
In this article, we create a ASP.NET Core 5.0 MVC app and associated with a Web API service in it by regular way. Then we write one line code for MVC client to consume Web API.
Consume Web API By MVC In .NET Core (1), Server And Framework
6/28/2022 12:41:09 AM.
In this article, we create a ASP.NET Core 5.0 MVC app and associated with a Web API service in it by regular way. Then we write one line code for MVC client to consume Web API.
Creating Web API Using Code-First Approach In Entity Framework
6/22/2022 9:04:42 AM.
This article enables you to create a Web API, using Code-First Approach In Entity Framework.
Building Secure REST API
8/4/2021 5:49:55 AM.
A Secure REST APi created in .Net Core using JWT Authentication and Entity Framework Code first approach. JWT Authentication is used for securing API requests. Each token generated by API for logged i
Understanding Code First Approach Of Entity Framework Core
6/8/2021 2:18:49 PM.
In this article, we will understand code first approach of Entity framework Core in ASP.Net Core. In this article we use entity framework core for creating table in SQL, delete table, update table, ad
Code First Approach in Entity Framework
4/6/2021 9:28:22 AM.
This article explains the Code First Approach in Entity Framework.
MVC Application Using EntityFramework Code-First Approach: Part 4
3/17/2021 6:03:49 AM.
This article focuses on connecting our MVC application with a database using the CodeFirst approach.
How to Use Code First Approach With Fluent API in ASP.NET MVC Application
3/9/2021 6:02:13 AM.
This article explains how to use the Code First Approach with the Fluent API in an ASP.NET MVC Application.
How To Implement Database Views Using Entity Framework (EF) Code First Approach
2/26/2021 6:47:15 PM.
In this article, you will learn how to Implement Database Views Using Entity Framework (EF) Code First Approach.
Entity Framework: Domain Modelling Approaches
2/12/2021 10:04:51 AM.
In this article I will be describing the three approaches to using Entity Framework (EF)- Model First, Database First and Code First.
Introduction to Code First Migration and Adding New Property in Application in MVC5
2/9/2021 10:25:36 AM.
This article introduces Code First Migration in Entity Framework and adding a new field in your application in MVC5 with Visual Studio 2013 Preview.
Data Annotation Attribute On Code First Approach
2/9/2021 6:36:32 AM.
This article explains the Data Annotation Attribute of the Code First Approach.
Perform Code First Migration in ASP.Net MVC 5
2/1/2021 5:09:09 AM.
This article explains how to do code first migration and how to apply it in an ASP.NET MVC Web Application in Visual Studio 2013.
Code-First Approach In MVC 5
1/20/2021 5:36:39 AM.
In this article, you will learn the implementation of the Code-First approach in MVC applications.
Code First Approach in Entity Framework
1/11/2021 4:25:34 PM.
In this article you will learn about the Code First approach in the Entity Framework.
EF Code First Approach Stored Procedure With Parameter
1/11/2021 8:16:03 AM.
This article shows how to access a SQL Server database with the Entity Framework Code First Approach and later we will also look at how to use a Stored Procedure with the Fluent API.
Understanding Database Initializer In Entity Framework Code-First Approach
1/6/2021 9:36:59 AM.
In this article you will understand the Database Initializer in Entity Framework Code-First Approach.
Entity Splitting in Entity Framework 6 (Code First Approach)
11/24/2020 5:20:23 AM.
This article explains Entity Splitting in Entity Framework 6 (Code First Approach) using C#.
Identifying Entity Framework Development Approaches
11/23/2020 9:54:27 AM.
In this article we are identifying the approaches for creating entity data models in the Entity Framework development of .Net.
Configure One To One Relationship In Entity Framework Using Code First Approach
11/17/2020 9:36:15 AM.
In this article you will learn how to configure one to one relationship in Entity Framework using Code First Approach.
Configure One-To-Many Relationships In Entity Framework Using Code First Approach
11/11/2020 9:41:50 AM.
In this article you will learn about configuring one-to-one relationships in Entity Framework using the code first approach
Import Data From Excel To SQL Server Database Using MVC Code First Approach
11/11/2020 8:32:43 AM.
The article given below describes findings of research about importing data from an Excel sheet into a Web project.
Code-First Approach With ASP.NET MVC Framework
11/10/2020 6:30:35 AM.
We all know Databases is very important of any application, and some time its too complex to manage Databases. To overcome this issue Microsoft come up with the Entity Framework (EF). which reduce com
Navigation Property With Code First (Navigation Property In EF)
11/10/2020 2:35:33 AM.
In this article, you will learn about Navigation Property with code first and navigation property in Entity Framework.
Using Entity Framework Core Code First Approach
4/22/2020 3:24:53 PM.
In this article, you will learn how to use the Entity Framework Core code first approach.
Entity Framework Core And Its Data Modelling Approaches
3/19/2020 9:16:53 AM.
In this article, you will learn about Entity Framework Core and its Data Modelling Approaches.
Entity Framework Core Code-First CRUD Operations In ASP.NET Core Application
7/27/2019 11:39:29 PM.
This video talks about how you can use the Entity Framework Code-First approach in ASP.NET Core applications.
Code First Approach in ASP.NET MVC
7/10/2019 1:26:10 AM.
In this video, we’ll learn how to perform CRUD operations with the code-first approach in an ASP.NET MVC application.
Entity Framework Core - Code First Approach With Fluent API
6/13/2019 8:40:21 AM.
In this article, you will learn about the code first approach with Fluent API.
Code First Approach - Migration Issues
5/24/2019 9:25:03 AM.
In this article, we’ll learn how to solve the migration merging issues in the code first approach.
New Features Of Entity Framework Core 2.1 - Lazy Loading
4/12/2019 1:42:40 PM.
This article discusses the new feature added to Entity Framework Core 2.1, i.e., Lazy Loading.
Features Of Entity Framework Core 2.1 - Better Column Ordering In Initial Migration
4/11/2019 10:44:51 AM.
This article discusses the new features added in Entity Framework Core 2.1.
What Is Entity Framework And How Entity Framework Core Is Different
4/11/2019 10:23:11 AM.
This article is about Entity Framework and Entity Framework Core
Generate Entity Framework Core Code First Models From Database In ASP.NET Core
2/23/2019 3:07:41 PM.
In this article, I have explained how to generate Entity Framework Core code-first models from the database in ASP.NET Core.
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
ASP.NET Core 2.1 - Implement Entity Framework Core In A Code First Approach
10/17/2018 8:57:06 AM.
In this article, we will discuss the Code-First Approach in Entity Framework Core using ASP.NET Core2.1.
Code First Approach And Code First Migrations In Entity Framework
10/16/2018 5:29:02 AM.
The intent of this article is to explain the code first approach and code first migrations that Microsoft’s Entity Framework provides. In my last article I explained the theory behind entity framework
Learning Web API 2 With Entity Framework 6 Code First Migrations
10/16/2018 5:26:18 AM.
In the last article of learning Entity Framework, we learned the code-first approach and code-first migrations. In this article, we’ll learn how to perform CRUD operations with ASP.NET Web API2 and En
Entity Framework In MVC - Part Eight
8/16/2018 10:22:41 AM.
In the previous article, I have explained One- to- One relationship of code first approach in Entity Framework. In this article, I will explain one –to- one and one- to - Many relationships in code fi
CRUD Operation With Repository And Database Initialization In Code First Approach In MVC - Part Six
7/26/2018 9:07:33 AM.
In the previous article, I explained about Code First Migrations and how enable Code First Migrations. In this article, I will explain How to perform CRUD and how to perform searching functionality us
Code First Migration In Entity Framework - Part Five
7/20/2018 9:17:57 AM.
In the previous article, I have explained how to implement a code first approach with a CRUD operation when we don’t have an existing database. In this article, I will explain about Code First Migrati
Code First Approach With CRUD Operation In Entity Framework In MVC - Part Four
7/17/2018 10:07:17 AM.
In previous article, I have explained how to implement code first approach when we have existing database. Now, I will explain that how to implement code first approach when we don’t have existing dat
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.
Code First Migration - ASP.NET MVC 5 With Entity Framework And MySQL
3/26/2018 3:33:35 PM.
In this article, we are going to explain Code First Migration in ASP.NET MVC 5 with EntityFrameWork & MySql.
Call Stored Procedure From ASP.NET MVC Controller
3/12/2018 4:42:44 AM.
7 steps easy video tutorial for calling stored procedure in MVC.
How To Use Entity Framework Code First Approach
3/12/2018 4:39:02 AM.
Code-First Approach in ASP.NET MVCApply Code-First Migration using following commands: enable-migrations, add-migration(Give Migration file name), update-database -script (optional), update-database.
Transaction In MVC Using Entity Framework
3/1/2018 10:30:19 AM.
This article explains how to use transaction in MVC using entity framework to save records in different tables
Get Your Hands On Entity Framework Code First Workflow With New Database And Existing Database
11/11/2017 6:08:56 AM.
In this article we are going to learn how to create code first workflow with new database and existing database.
How To Export Razor View To Excel file Using ASP.NET MVC C#
9/1/2017 2:24:21 AM.
How to Export Razor View to Excel file (Without using Third-Party Library) using ASP.NET MVC 5 with Entity Framework Code first Approach.
CRUD Operation Using Code First Approach, Web API, Repository Pattern, Unit Of Work, And jqGrid In MVC
8/12/2017 11:36:25 PM.
Today, in this article, I will explain how to perform CRUD operations in MVC using Code First Approach.
Code First Development Approach With Entity Framework
7/20/2017 10:32:10 AM.
Which one to use in your project is completely your choice and also what you already have in place. Meaning are you designing/developing something from scratch or you already have got DB or domain cla
Entity-Framework Code First Migration With WebAPI 2.0 - Extending ASP.NET Identity Database
6/18/2017 9:54:15 PM.
Here, we will see how to extend ASP.NET Identity database using Code First migration in Web API 2.0.
Entity Framework Code First Approach With Database Migration
4/9/2017 8:03:07 AM.
In this article, you will understand about an Entity Framework Code First Approach with database migration.
Code First Migration - ASP.NET Core MVC 6 With EntityFrameWork Core
2/22/2017 1:03:02 AM.
In this article, we are going to explain Code First Migration in ASP.NET Core MVC 6 With Entity Framework Core , using Command Line Interface ( CLI ).
CRUD Functionality In AngularJS And ASP.NET MVC 5 With Entity Framework Code First Approach
2/17/2017 10:28:41 AM.
In this article you will learn about CRUD Functionality in AngularJS and ASP.NET MVC 5 with Entity Framework Code First Approach.
Introduction To Code First Approach In Entity Framework
2/11/2017 3:21:13 PM.
In this article, you will learn about Entity Framework Code First Approach.
Creating MVC Applications Using Entity Framework Code First Approach
12/13/2016 6:32:48 PM.
In this article, you will learn how to create MVC applications using Entity Framework Code First approach.
.NET Core Code First Migration Using Class Library
8/31/2016 4:32:29 PM.
In this post, we are going to elaborate how to work with EF code first migration using .NET Core class library.
Enable Migration In Code First Approach
6/22/2016 4:42:39 AM.
In this article, you will learn about how to use migration in Code First approach
Single Page Application Using Web API And AngularJS
6/21/2016 12:02:56 AM.
In this article, you will learn how to create a single page application using Web API and AngularJS.
Entity Framework Code First Approach
6/9/2016 12:23:31 PM.
In this article, you will learn about how to implement code first approach.
Create A New Database Using Code First In Entity Framework
6/3/2016 2:06:46 PM.
In this article you will learn how to create a new database using code first in Entity framework.
Fluent API In Code First Approach
5/16/2016 12:45:07 PM.
In this article you will learn about Fluent API in Code First Approach.
Introduction To Entity Framework Code First
3/28/2016 10:35:27 AM.
In this article we focused on a code first approach but before that we must first understand Entity Framework itself and different approaches available.