In your own words write about 1015 sentences on what exactly
In your own words, write about 10-15 sentences on what exactly the Entity Framework is and how it can be applied to C#.
Solution
Entity Framework is an object relational mapper.that allows us to work with relational data with domain specific objects.It basically generates business objects and entities according to database tables.The benefits of it includes we can have all the data access related object written in high level langugage which is under programmer\'s control.And whenever a change is required in access logic it could be done easily without much hassle.It provides an automated way to developers for storing and accessing data.Its an open source framework, it takes care for creating database connection executing the commands, getting the query results and automatically materialize those into application objects.
