Tag: Entity Framework

  • Entity Framework CodeFirst Approach

    Entity Framework Code First Approach   Entity Framework is an enhancement to an existing ADO.Net technique and ORM framework we used for Microsoft technologies. 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…

  • ASP.NET: Audit Trail Implementation using Entity Framework

    When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records.  Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps…

  • Entity Framework Code First

    Code First development with Entity Framework New approaches to modeling for Entity Framework 4.1. Code First Model First Database first Let's go through Code First implementation in this blog.   Introduction In Code First approach, you avoid working with visual model designer (EDMX) completely. You write your POCO classes first and then create database from…