Tag Archives: Entity Framework

Entity Framework 6 Eager Loading

In this Entity Framework Tutorial, we are going to understand about an important concept related to Object Relational Mapping that is “Eager Loading” with the help of a practical example. We already have discussed eager loading at high level, and another related concept “Lazy Loading” that is opposite to Eager Loading while discussing Entity Framework Interview… Read More »

ASP.NET MVC Application with EF6 Code First Approach

In this ASP.NET MVC Tutorial, we are going to see a simple but practical implementation for Entity Framework Code First Approach. We have already given examples on Entity Framework Model First as well as traditional Database First approaches in other examples. You can follow other sample implementations at below given URLs. Entity Framework Database First… Read More »

ASP.NET MVC Shopping Cart with C#, EF, SQL Server-Part3

This web development tutorial is part-3 in series of ASP.NET MVC Shopping Cart Application. In this three parts series, we tried to learn how to develop an Online Shopping Store Application using ASP.NET MVC, C#, Entity Framework and MS SQL Server? So far we have covered the major features of an ASP.NET MVC Shopping Cart… Read More »

ASP.NET MVC Shopping Cart with C#, EF, SQL Server-Part2

In this series of ASP.NET MVC Shopping Cart Application, Part-1 covered most of the administrative features including Category/Product Management and Project Initial Setup. Complete Source Code for the ASP.NET MVC Shopping Cart application is now available to download here. You just need to be a REGISTERED Member to download Source Code. Registration is FREE 🙂 Features… Read More »

ASP.NET MVC Shopping Cart with C#, EF, SQL Server-Part1

In this ASP.NET MVC Tutorial Series, we will follow a step by step approach to develop an Online Shopping Cart using ASP.NET MVC, C#, Entity Framework and SQL Server with database first approach. After reading this Web Development Tutorial, user must be able to understand that how to build an ASP.NET MVC Shopping Cart using above mentioned technologies… Read More »

Top 20 Entity Framework Interview Questions – MUST HAVE

This post is about Entity Framework Interview Questions that will explore various features, concepts and FAQs regarding Microsoft Entity Framework. It’s basically a collection of most frequently asked Interview Questions on Entity Framework for developers. You can also explore some practical solutions implementing Entity Framework here: Building Your First MVC Application with Entity Framework [Part… Read More »

Understanding ASP.NET MVC5 Model First Approach with EF6

As a scalable framework for building high-end web applications, ASP.NET MVC5 would have definitely helped you in boosting your interest in handling web app development. Considering your urge for learning more about the absolutely stunning world of ASP.NET MVC Development, I’ve written this tutorial which focuses on using the model first approach for connecting the… Read More »

What’s new in Entity Framework from beginning to EF7 – EF Core

Microsoft Entity Framework (EF) is an Object Relational Mapping framework that provides an abstraction layer (a kind of mapping) between two incompatible systems (i.e. Object oriented programming languages with Relational databases). It enables us to interact with relational data in an object oriented way. UPDATED: Web Development Tutorial is updated with the release of Entity Framework EF7… Read More »

Building your first MVC application with Entity Framework – Part 2

This is ASP.NET MVC 5 Tutorial Part-2 in series of building ASP.NET MVC Application using Entity Framework. In previous part, we built a simple ASP.NET MVC application (Product Catalog Application) and generate an EDM(Entity Data Model) following a step by step approach. We also got answers to: What an ORM is? Entity Framework as an ORM?… Read More »

Building first ASP.NET MVC application with Entity Framework

Before we start implementing an ASP.NET MVC application using Entity Framework, lets first understand few related concepts. Microsoft Entity Framework is basically an ORM (Object Relational Mapping) framework. For a more detailed Entity Framework Tutorial for beginners, follow here. So, what is an ORM? In most of the cases when working with database driven application, we… Read More »