Entity Framework – DbContext The Entity Framework enables you to query, insert, update, and delete data, using Common Language Runtime (CLR) objects which is known as entities. The Ent... Read more
Entity Framework – Data Model The Entity Data Model (EDM) is an extended version of the Entity-Relationship model which specifies the conceptual model of the data using various modelli... Read more
Entity Framework – Database Setup In this tutorial, we will be using a simple University database. A University database can be much more complex as a whole but for demo and learning p... Read more
how to Backup and Restore Sql Database in C# you can easily backup and restore your database with c# like this . private void btnBackup_Click(object sender, EventArgs e) { SaveFileDialog sv... Read more
Entity Framework – Environment Setup What’s New in Entity Framework 6? Framework has a complex API that lets you have granular control over everything from its modeling to its runtime... Read more
Entity Framework – Architecture The architecture of Entity Framework, from the bottom up, consists of the following − Data Providers These are source specific providers, which abstract... Read more
Entity Framework – Overview What is Entity Framework? Entity Framework was first released in 2008, Microsoft’s primary means of interacting between .NET applications and relation... Read more
Entity Framework Questions and Answers 3 21. How can we do pessimistic locking in Entity Framework? We cannot do pessimistic locking using Entity Framework. You can invoke a stored procedure... Read more
Entity Framework Questions and Answers 2 15. What are POCO classes in Entity Framework? POCO means Plain Old C# Object. When EDMX creates classes, they are cluttered with a lot of entity tag... Read more
Entity Framework Questions and Answers 1 1. What is Entity Framework? ADO.NET entity is an ORM (object relational mapping) which creates a higher abstract object model over ADO.NET component... Read more