Sign In
ADO.NET team blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
2.0 SP1
ADO.NET
ADO.NET Data Services
ADO.NET Orcas
ADO.NET vNext
ASP.NET
Astoria
Beta 3
Code First
Core Lab
Data Direct
datajs
DataSet
DB2
DbContext API
Devart
Dynamic ADO.NET
EDM
EF4
Entity Data Source
Entity Framework
Entity Framework Feature CTP1 for .NET 4.0
Entity Framework Feature CTP2 for .NET 4.0
Entity Framework Futures
Entity Framwork Feature CTP2 for .NET 4.0
Firebird
IBM
Informix
Jasper
LINQ to SQL
MySQL
Npgsql
OpenLink
Oracle
Orcas
Pages
PDC
Performance
Petshop
Phoenix Software Solutions
POCO
PostgreSQL
Providers
Sample Provider
SQL Azure
SQL Server 2008
SQLClient
SQLite
STEs
Sybase
Synergex
U2
Virtuoso
VistaDB
Visual Studio 2010
Visual Studio 2010 Beta 2
Web Data Service
What's New
What's New Data Services
Windows Azure
Browse by Tags
MSDN Blogs
>
ADO.NET team blog
>
All Tags
>
performance
Tagged Content List
Blog Post:
EF5 Performance Considerations
dpblogs
Over the past few weeks the EF team has been putting together a whitepaper that talks about the performance considerations developers should take when using Entity Framework. Performance is one critical aspect of developing modern applications, and this document will help developers make informed design...
on
5 Apr 2012
Blog Post:
Sneak Preview: Entity Framework 5.0 Performance Improvements
dpblogs
An O/RM, like any layer of abstraction, introduces overhead to data access. In EF 5.0 we have taken steps to reduce this overhead and improve performance. As a result in one of our tests, repeat execution time of the same LINQ query has been reduced by around 6x. We also have an end-to-end application...
on
14 Feb 2012
Blog Post:
Generated SQL Improvements for TPT Queries (June CTP)
dpblogs
Last year we wrote about some performance considerations when using TPT inheritance in the Entity Framework . We are pleased to announce that with the Microsoft Entity Framework June 2011 CTP we have released the first round of improvements, resulting in dramatic improvements in queries against TPT hierarchies...
on
25 Jul 2011
Blog Post:
Entity Framework Improvements in Visual Studio 2010 SP1
dpblogs
Today’s release of Visual Studio 2010 SP1 includes several performance and stability improvements for Entity Framework 4.0. MSDN subscribers can download the service pack immediately, and the release will have general availability on Thursday, March 10. Download Service Pack 1 (MSDN Subscribers...
on
7 Mar 2011
Blog Post:
Managing Connections with SQL Azure and Entity Framework
dpblogs
The Windows Server AppFabric Customer Advisory Team recently put together some great guidance on managing connections with SQL Azure and EF. They outline common connection issues when working with a cloud database, and show how you can implement your own custom retry policy. You can find the article...
on
6 Jan 2011
Blog Post:
Connecting to SQL Azure using Entity Framework
dpblogs
The Entity Framework provides a very powerful way to access data stored in the cloud, particularly in SQL Azure. Over the past month the SQL Azure team has been posting some great info on how to use Entity Framework: Using EF’s Model First capability with SQL Azure This walkthrough shows...
on
15 Nov 2010
Blog Post:
Inheritance Mapping: A Walkthrough Guide for Beginners
dpblogs
Entity Framework’s Inheritance Mapping allows developers to map their classes to different database structures in order to fulfill their specific performance, extensibility, storage size, and ease of use requirements. This article will help you understand the advantages and disadvantages of each...
on
25 Oct 2010
Blog Post:
Data Access Guidance
dpblogs
When considering how your application will connect to a data source, there’s a variety of technologies, patterns, and architectures to consider. Recently we published a “ Summary of Data Access Guidance ” on the MSDN Data Developer Center. If you want to drill deeper into the material...
on
29 Sep 2010
Blog Post:
Performance Considerations when using TPT (Table per Type) Inheritance in the Entity Framework
dpblogs
The Entity Framework offers very rich inheritance mapping schemes for building your conceptual model. The inheritance capabilities in EF include: · TPH (Table per Hierarchy): This is the inheritance scheme where there is a single table in the database representing the hierarchy, but the conceptual...
on
17 Aug 2010
Blog Post:
Performance Impact of Server-side Generated GUIDs in EF
dpblogs
Background EF4 supports the use of server-generated GUIDs, which has been a popular request since EF 3.5. Lee Dumond summarized his experience on how to use this feature very well. But you may find that the performance of server-generated GUIDs is not as fast as client-side generated GUIDs or even...
on
28 Jun 2010
Blog Post:
TechEd North America – Sessions Online Now!
dpblogs
If you missed out on all the festivities at TechEd North America in New Orleans last week, be sure to check out www.msteched.com and catch the talks online. All week long there was a ton of excitement about the new features in Entity Framework 4.0 and WCF Data Services/OData and lots of great questions...
on
23 Jun 2010
Blog Post:
Improvements to Generated SQL in .NET 4.0
dpblogs
In a previous post ( http://blogs.msdn.com/adonet/archive/2009/08/05/improvements-to-the-generated-sql-in-net-4-0-beta1.aspx ), we talked about the improvements to the quality and the readability of the SQL generated when querying using the Entity Framework that we made in .NET 4.0 Beta 1. We continued...
on
10 May 2010
Blog Post:
ADO.NET Entity Framework Performance Comparison
dpblogs
There have been a few questions from the last performance blog post about how the Entity Framework compares against other object relational mapping frameworks. The simplest way to compare the performance of Entity Framework with various competing products is to use query performance against SqlClient...
on
27 Mar 2008
Blog Post:
Exploring the Performance of the ADO.NET Entity Framework – Part 2
dpblogs
Query Performance During this post I’ll show a few patterns on how to improve the query performance. A major design element for performance is the query cache. Once a query is executed, parts of the query are maintained in a global cache. Because of query and metadata caching, the second run always...
on
11 Feb 2008
Blog Post:
Exploring the Performance of the ADO.NET Entity Framework - Part 1
dpblogs
Performance Matters No matter what type of application you are developing at some point in the lifecycle of a software application or service, performance matters; this is especially true when accessing data. In this article, I’m going to spend some time exploring the performance of the ADO.NET Entity...
on
4 Feb 2008
Blog Post:
ADO.NET performance improvements with the .NET Framework 2.0 SP1
dpblogs
With the release of Visual Studio 2008 and the .NET Framework 2.0 SP1, there are some bug fixes and improvements in ADO.NET (A list of the general fixes is at http://support.microsoft.com/kb/945757 ) We worked with the CLR team to get improvements like the thread pool improved scalability , and that...
on
28 Jan 2008
Blog Post:
ADO.NET Entity Framework Beta 3 Released!
dpblogs
Announcing the release of the ADO.NET Entity Framework Beta 3 ! The ADO.NET Entity Framework Beta 3 release enables users to visually design models and mappings using Visual Studio 2008 RTM and the .NET Framework 3.5 RTM. This release also incorporates fixes to bugs, performance improvements and...
on
5 Dec 2007
Blog Post:
LOB Performance in SqlDataReader.
MSDNArchive
I've been answering a few questions here and there about performance for pulling LOB data out of a SqlDataReader and figured a discussion of what's going on behind the scenes may be useful. This analysis is based primarily on the number of copies and movements of data, as well as a bit of code path inspection...
on
30 Oct 2006
Page 1 of 1 (18 items)