Entity Framework
Tag details
Welcome to the 'Entity Framework' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'Entity Framework'.
Latest blogosphere posts tagged “Entity Framework”
-
Dew Drop – December 27, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | The Geek Shelf Top Links Simplifying Entity ...10 hours ago -
Dew Drop – December 25, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | Miscellaneous | More Link Collections | The Geek Shelf Top Links Need test/sample/demo data that’s ...2 days ago -
OakLeaf Blog Analytics for November 2009
OakLeaf Systems —
Authority: 467
I’ve decided to post monthly reports of the OakLeaf Blog’s traffic in order to spot trends. The analytics so far show little difference month to month for the year 2009, although a controversial post occasionally raises weekly traffic by as much as 50%. Here’s Google Analytics’ default report for the ...2 days ago -
Dew Drop – December 24, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | Miscellaneous | More Link Collections | The Geek Shelf Top Links Tips for Releasing Sample Code ...3 days ago -
Entity Framework Podcast and Unit Testing Video
Moses' Blog —
Authority: 91
Just done with my first video about Unit Testing Entity Framework with TypeMock Isolator . It is my very first video actually made in the community. Also last October, I was interviewed by DotNetArabi on Entity Framework. That was my first Podcast too. The Podcast was in Arabic. Here are links for both: ...5 days ago -
Object-relational Mappings webcast recording now available online
I'd rather play golf —
Authority: 111
On 15 December I presented a webinar entitled “Object-relational Mappers: Friend or foe?”. A flash recording of this webcast is available here . After entering your contact information, you’ll be automatically redirected to another page and the flash recording will begin immediately.5 days ago -
Self-Tracking entities: How to reduce exchange between client and server?
MSMVPS.COM —
Authority: 575
Self-Tracking entities are really great for N-Tiers scenarios but we have to be careful in order to reduce exchange between client and server. Imagine the following EDM: and the following scenario: using ( var context = new NorthwindClientContext ()) { var c = ...6 days ago -
Repurchase of Sun by Oracle: has wedges Brussels
Script For All —
Authority: 127
Business – the European commission announces to have opened an in-depth survey on the operation which according to it raises problems of competition on the market of the databases. The validation of the repurchase by Oracle from Sun Microsystems by the European commission will take time. Whereas American ...1 week ago -
Dew Drop – December 16, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | The Geek Shelf Top Links LINQPad updated to ...1 week ago -
Entity Framework POCO (EF4): A Simple Mapping
Elegant Code —
Authority: 518
The latest EF4 CTP released on November 12th includes updated support for POCO’s (Plain Ol’ CLR Objects). Although we could use POCO’s in the previous CTP, we still had to create an EDMX artifact to model our entities, thus leading to a bit of duplication. In this post I want to take a look a simple mapping ...1 week ago -
Addressing the pain of Entity Frameworks ObjectQuery<T>.Include()
Living in the Tech Avalanche Generation —
Authority: 115
Well to be fair it’s not all the fault of .Include() alone, for me there is a real friction in the whole loading story in Entity Framework version 1 & 4 and it’s the direct result of the ‘fetching’ aspect of the API being fractured. For eager fetching we have: ObjectQuery ...1 week ago -
Book Review – Programming Entity Framework (EF) by Julie Lerman
PeterKellner.net —
Authority: 115
You all know that I’ve blogged quite a bit about LINQ2SQL. That technology has saved me a huge amount of programming effort verses using ado.net directly. We all know that... This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming1 week ago -
Dew Drop – December 14, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | The Geek Shelf Top Links use Less to reduce ...1 week ago -
SQL Server Query Plan cache – what is it and why should you care?
DamienG —
Authority: 390
What is a query plan? SQL Server like all databases goes through a number of steps when it receives a command. Besides parsing and validating the command text and parameters it looks at the database schema, statistics and indexes to come up with a plan to efficiently query or change your data. You can view the plan ...2 weeks ago -
EF and N-Tiers
MSMVPS.COM —
Authority: 575
Even if it’s really easier with Self-Tracking entities and EF4, a difficult point remains in N-Tiers scenarios. In a previous post , I explained how with T4, I can generate all my WCF service. Now, what about the client tiers? I explained how can I use LINQ queries and translate them into WCF service ...2 weeks ago -
Dew Drop – December 11, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | The Geek Shelf Top Links Jeffrey Richter’s ...2 weeks ago -
Linqpad
LieberLieber Software TeamBlog —
Authority: 99
While writing all the LINQ statements for an ASP.Net MVC and ADO.NET Microsoft Entity framework project, I came across the Linqpad tool. If you are working with Linq you should have a look at this amazing tool.2 weeks ago -
Dew Drop – December 9, 2009
Alvin Ashcraft's Morning Dew —
Authority: 125
Jump to: Top Links | .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | The Geek Shelf Top Links 10 AppFabric/.Net 4 ...2 weeks ago -
NServiceBus - Entity Framework Saga Persister
Living in the Tech Avalanche Generation —
Authority: 115
In my last post I demonstrated a LINQ To SQL Saga Persister for NServiceBus and promised to follow it up with a similar dose of medicine - an Entity Framework Persister, specifically demonstrated for Version 1.0 of the Entity Framework. Obviously after two previous posts on the LINQ To SQL Persister I am not ...2 weeks ago -
Object-relational Mappers: Friend or foe?
I'd rather play golf —
Authority: 111
On Tuesday, 15 December 2009 I’ll be presenting a one-hour webinar entitled “Object-relational Mappers: Friend or foe?”: Object relational mappers (ORMs) such as LINQ, Hibernate, and ActiveRecord bridge the gap between the relational database world, and the object-oriented world. By abstracting the database ...2 weeks ago

