Showing posts with label Entity Framework. Show all posts
Showing posts with label Entity Framework. Show all posts

Difference between LINQ to SQL and Entity Framework

Introduction: LINQ to SQL allow you to query and modify SQL Server database by using LINQ syntax. Entity framework is a great ORM shipped ...

Domain modelling approaches in Entity Framework

Introduction: A business domain is populated with related and interconnected entities which have its own properties and behavior. Most imp...

Differences Between NHibernate and Entity Framework

Introduction NHibernate and Entity Framework are two of the most popular O/RM frameworks on the .NET world. Although they share some func...

Version history of ADO.NET Entity Framework

Introduction: ADO.NET Entity Framework is an Object/Relational Mapping (ORM) framework that enables developers to work with various relati...

How to improve Entity Framework Performance

Introduction: LINQ to Entity is a great ORM for querying and managing database. It offers a lot of things, so it is mandatory to know abou...

Inheritance in Entity Framework

Introduction: Inheritance in the Entity Framework is similar to inheritance for classes in C#. In Entity Framework, you can map an inherit...

Using T4 templates in Entity framework

Introduction: T4 stands for Text template transformation toolkit which is a template-based code generation engine built into Visual S...

Entity Framework Code First Migrations

Introduction: Code-First approach allows you to define model classes as per the Domain requirements via POCOs. Hence, you have complete ...

Difference between Lazy Loading and Eager Loading

Introduction:  In LINQ and Entity Framework, you have Lazy Loading and Eager Loading for loading the related entities of an entity. In t...

Introduction to Entity Framework

Introduction: ADO.NET Entity Framework is an Object/Relational Mapping (ORM) framework that enables developers to work with relational d...