Entity framework
What is the Entity framework?
The Entity framework is an object-relation mapper, means - it takes the structure of the database and turns it into objects that the .Net framework can understand. Developers use those object to interact with the database instead of interacting with database directly. It’s possible to perform the full set of Create, Read, Update, and Delete (CRUD) operations using the Entity Framework features
It has three work flows
- Code – first,
- Model-first and
- database first.
Their detail will be provided in next Post
No comments:
Post a Comment