Deleting Multiple Records in Entity Framework | Entity Framework Tutorial

Sometimes you may need to delete multiple records. In such case, developers use to iterate through the collection using foreach and will set each entity state to modified. Some developers......

Read More

Diagnosing Error: validation failed for one or more entities. see 'entityvalidationerrors' property for more details | Entity Framework Programmer Guide

,

Sometimes in entity framework code first approach, you could have come across an issue "validation failed for one or more entities. see 'entityvalidationerrors' property for more......

Read More

Developing A Website Using ASP.NET MVC 4, EF, Knockoutjs And Bootstrap

, ,

All websites are growing faster these days, and once it grows, it is very hard to write, organize and maintain. As we add new functionality or developer to a project, any large web......

Read More

Connection Resiliency Feature In Entity Framework 6 | Visual Studio 2013

,

The new Connection Resiliency feature in EF6 enables you to register an execution strategy to handle – and potentially retry – failed database operations. This is especially......

Read More

Async and Task Support For Entity Framework 6 In Visual Studio 2013

,

EF6’s new Async Query and Save support enables you to perform asynchronous data access and take advantage of the Task<T> support introduced in .NET 4.5 within data......

Read More

Interception and Logging For Entity Framework 6 Is Improved In Visual Studio 2013

,

Interception and SQL logging allows you to view – or even change – every command that is sent to the database by Entity Framework. This includes a simple, human readable log......

Read More

Custom Code-First Conventions In Entity Framework 6 Improved In Visual Studio 2013

,

The new Custom Code-First Conventions enable bulk configuration of a Code First model – reducing the amount of code you need to write and maintain. Conventions are great......

Read More

New Features Of ASP.NET and Entity Framework In Visual Studio 2013

, , ,

Below are details on a few of the great ASP.NET, Web Development, and Entity Framework improvements you can take advantage of with this release.  Please visithttp://www.asp.net/vnext for......

Read More

What’s New in Entity Framework 6.0 Release Candidate 1?

Below are some of the new features introduced in Entity Framework 6.0 Customizing Code First Conventions Logging of database commands Stored Procedure Mapping Asynchronous Queries......

Read More

Code Walkthrough on Entity Framework - C#

, ,