C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
2
Reply
What is Entity Framework ?
Kumar Bhimsen
10y
1.3k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
Entity Framework (EF) is an object-relational mapper that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write.
Ravi Patel
9y
0
1. Entity Framework is an ORM(Object Relational Mapping) framework.Its a new technology of .net developed by Microsoft. 2. It is an enhancement of ADO.Net which allows the developer to connect to Database with Data Model Object instead of old data connection. 3. It allow us to create an entity class which represents the table in database, and using that class developer can do all the work to the back end. 4. Since the class represents the table in the database,due to which we can easily understand the table's data and there relationship among the table. 5. It supports the LINQ query to retrieving and manipulating the data into the datasource. 6. Entity Framework makes us free from the Old components of the ADO.Net components such as Data Table, DataSet, Connection etc.
Kumar Bhimsen
10y
0
How to Read, Add, Update and Delete record in Entity Framework ?
What is the page Lifecycle of the MVC ?
Message