Anti-Patterns To Avoid In N-Tier ApplicationsThis article discusses: Understanding n-tier Don’t distribute your objects! Custom service or RESTful service? Some n-tier anti-patterns This article uses the following technologies: Entity FrameworkAs a member of the Entity Framework team, I frequently talk to customers about building applications that use the Entity Framework. Probably the topic I get [...]
Tag Archives: Entity
Entity Framework: Anti-Patterns To Avoid In N-Tier Applications
Data Points: Entity Framework Preview: code first, ObjectSet and DbContext
While the Entity Framework (EF) 4 was still in beta, the development team began work on another way to use it. We had the database-first way of creating a model (by reverse engineering a database into an Entity Data Model) and the new EF 4 model-first feature (define an Entity Data Model, then create the [...]
Data Points: Server-Side Paging with the Entity Framework and ASP.NET MVC 3
In my February Data Points column, I showed off the jQuery DataTables plug-in and its ability to seamlessly handle huge amounts of data on the client side. This works well with Web applications where you want to slice and dice large amounts of data. This month, I’ll focus on using queries that return smaller payloads [...]
Data Points: The Entity Framework in Layered Architectures
The Entity Framework In Layered ArchitecturesThis column is based on a prerelease version of the ADO.NET EntityFramework. All information herein is subject to change.When architects of an n-tiered architecture evaluate any new technology, pattern, or strategy, they have to consider how that new piece of the puzzle is going to mesh with the architecture. With [...]
Reading data from an Entity Framework data model through a WCF Data Service
This is going to be the fourth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here, the second one here and the third one here.I have a post regarding ASP.Net and EntityDataSource. You can read it here.I have 3 [...]
Performing Data binding in an ASP.Net application with Entity Framework C#
This is going to be the eighth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here, the second one here , the third one here , the fourth one here, the fifth one here ,the sixth one here and the seventh one here. I have [...]
Using stored procedures with Entity Framework in an ASP.Net application
This is going to be the third post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here and the second one here.I have a post regarding ASP.Net and EntityDataSource. You can read it here.I have 3 more posts [...]
Relationship Between Identity Map Pattern and the Entity Framework C#
This is going to be the seventh post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here, the second one here and the third one here , the fourth one here, the fifth one here and the sixth one here. I have a post regarding [...]
Creating ASP.Net application using the Entity Data Model C#
This is going to be the first post of a series of posts regarding ASP.Net and Entity Framework and how we can use Entity Framework to access(select,insert,update,delete) the database. We will start with some simple samples but then we will look into more advanced uses of Entity Framework. In order to follow along you must [...]