Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
MSDN Blogs
>
ADO.NET Blog
Server & Tools Blogs
>
Data Platform Blogs
>
ADO.NET Blog
Data Development
ADO.NET (Managed Providers, DataSet & EF)
WCF Data Services
SQL Server Customer Advisory Team
SQL Server Protocols
Microsoft XML Team
JDBC
Microsoft Drivers for PHP for SQL Server
Sync
SQL Server Data Tools
StreamInsight
Data Quality Services
Data Quality Services
SQL Server Customer Advisory Team
DQS with Jessica Meats
All MSDN DQS Postings
OLTP
SQL Server Team
ADO.NET (Managed Providers, DataSet & EF)
SQL Server Customer Advisory Team
SQL Release Services
SQL OS
Running SAP on SQL Server
Conor vs. SQL
SQL AlwaysOn Team
SQL Server Manageability
Integration Services
SSIS
Data Quality Services
SQL Server Customer Advisory Team
All MSDN SSIS Postings
Data Security & Storage
SQL Server Security
SQL Server Storage Engine
SQL OS
SQL Server Customer Advisory Team
Data in the Cloud
Windows Azure
Your Data in the Cloud
SQL Server Team
Silver Lining
ADO.NET Blog
The official source of information on Managed Providers, DataSet & Entity Framework from Microsoft
Live Now on Server & Tools Blogs
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Tags
ADO.NET
ADO.NET Data Services
ADO.NET Orcas
ADO.NET vNext
Astoria
Code First
DataSet
DbContext API
EDM
EF4
Entity Framework
Entity Framework Futures
LINQ to SQL
Oracle
Pages
Performance
Providers
Sample Provider
SQL Azure
SQL Server 2008
SQLClient
Visual Studio 2010
Visual Studio 2010 Beta 2
What's New
What's New Data Services
More
▼
Less
▲
Archives
Archives
May 2013
(1)
March 2013
(2)
February 2013
(1)
January 2013
(2)
December 2012
(1)
November 2012
(2)
October 2012
(1)
September 2012
(2)
August 2012
(1)
July 2012
(2)
May 2012
(2)
April 2012
(3)
March 2012
(2)
February 2012
(5)
January 2012
(5)
November 2011
(5)
October 2011
(2)
September 2011
(11)
August 2011
(5)
July 2011
(5)
June 2011
(6)
May 2011
(4)
April 2011
(3)
March 2011
(9)
February 2011
(10)
January 2011
(12)
December 2010
(6)
November 2010
(3)
October 2010
(5)
September 2010
(4)
August 2010
(1)
July 2010
(4)
June 2010
(5)
May 2010
(7)
April 2010
(2)
March 2010
(2)
February 2010
(5)
January 2010
(6)
December 2009
(3)
November 2009
(8)
October 2009
(3)
September 2009
(1)
August 2009
(2)
July 2009
(2)
June 2009
(11)
May 2009
(16)
April 2009
(1)
January 2009
(3)
December 2008
(4)
November 2008
(2)
October 2008
(6)
September 2008
(3)
August 2008
(6)
July 2008
(3)
June 2008
(8)
May 2008
(12)
April 2008
(4)
March 2008
(4)
February 2008
(3)
January 2008
(8)
December 2007
(13)
November 2007
(1)
October 2007
(3)
September 2007
(7)
August 2007
(2)
July 2007
(2)
June 2007
(1)
May 2007
(5)
April 2007
(7)
March 2007
(7)
February 2007
(6)
January 2007
(3)
November 2006
(1)
October 2006
(1)
September 2006
(3)
August 2006
(4)
July 2006
(6)
More
▼
Less
▲
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
ADO.NET Blog
Exploring the Performance of the ADO.NET Entity Framework – Part 2
Posted
over 5 years ago
by
dpblogs
30
Comments
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...
ADO.NET Blog
Exploring the Performance of the ADO.NET Entity Framework - Part 1
Posted
over 5 years ago
by
dpblogs
31
Comments
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...
ADO.NET Blog
ADO.NET performance improvements with the .NET Framework 2.0 SP1
Posted
over 5 years ago
by
dpblogs
12
Comments
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...
ADO.NET Blog
Programming LINQ and the ADO.NET Entity Framework Webcast
Posted
over 5 years ago
by
dpblogs
4
Comments
Check out our upcoming webcast by Mike Pizzo on LINQ and the Entity Framework. Programming LINQ and the ADO.NET Entity Framework Summary: Language Integrated Query (LINQ) introduces an exciting new way fo applications to build strongly typed queries...
ADO.NET Blog
SampleEdmxCodeGenerator sources
Posted
over 5 years ago
by
dpblogs
7
Comments
As a follow up to my previous article on Customizing Code Generation in the ADO.NET Entity Designer , here are the sources and instructions for SampleEdmxCodeGenerator. SampleEdmxCodeGenerator is not intended for production use; instead, it demonstrates...
ADO.NET Blog
Customizing Code Generation in the ADO.NET Entity Designer
Posted
over 5 years ago
by
dpblogs
6
Comments
In previous posts, I’ve described CSDL annotations , how to extract CSDL from EDMX and introduced you to how the ADO.NET Entity Designer generates code . In this post, I’ll delve into replacing the EntityModelCodeGenerator with a SingleFileGenerator...
ADO.NET Blog
How does the ADO.NET Entity Designer generate code?
Posted
over 5 years ago
by
dpblogs
7
Comments
I’ve had this article pending for a while; numerous folks wanted more information on this topic and I finally got some this weekend and wrote it up for your reading pleasure. The ADO.NET Entity Designer stores all its information in the EDMX file which...
ADO.NET Blog
How to Extract CSDL from EDMX
Posted
over 5 years ago
by
dpblogs
8
Comments
The ADO.NET Entity Designer stores all its information in the EDMX file which merely encapsulates the EF metadata artifacts (CSDL/MSL/SSDL content) along with a bunch of designer data in a single file. I’ve described the structure of the EDMX file in...
ADO.NET Blog
Annotations in CSDL
Posted
over 5 years ago
by
dpblogs
6
Comments
The CSDL schema supports (what we internally call) annotations . Basically, annotations are XML attributes from a custom XML namespace that are part of your EntityType’s definition. Here’s an example of an EntityType in CSDL with annotations. Notice...
ADO.NET Blog
Happy New Year!
Posted
over 5 years ago
by
dpblogs
0
Comments
From the ADO.NET Team
ADO.NET Blog
The ADO.NET Entity Framework - Not Just For SQL Server!
Posted
over 6 years ago
by
dpblogs
24
Comments
As you're hopefully aware, Beta 3 of the ADO.NET Entity Framework is already available. If not, see the ADO.NET team blog here . You may not be aware of the various ADO.NET provider writers who are publicly pledging their support for the Entity Framework...
ADO.NET Blog
Sample ADO.NET Entity Framework Provider - Beta 3
Posted
over 6 years ago
by
dpblogs
6
Comments
We've updated the sample provider to work with Beta 3 of the ADO.NET Entity Framework. The sample provider is available for download as an attachment to this blog post. The sample provider has undergone some minor changes in moving from Beta 2 to Beta...
ADO.NET Blog
How To: use your existing CSDL/MSL/SSDL files in the Entity Designer CTP2
Posted
over 6 years ago
by
Elisa Flasko - MSFT
2
Comments
Sanjay Nagamangalam, the lead PM for the Entity Designer, has written up a great how-to for using existing EF metadata files in the new CTP2 designer, posted on Danny Simmons' blog.
ADO.NET Blog
Entity Data Model Designer Video - CTP 2
Posted
over 6 years ago
by
Elisa Flasko - MSFT
10
Comments
We have created a new Camtasia video that demonstrates a number of important new features in the Entity Data Model Tools December CTP. First, it is now possible to visually map the insert, update, and delete stored procedures for entity types. Additionally...
ADO.NET Blog
ADO.NET Data Services CTP Released
Posted
over 6 years ago
by
dpblogs
4
Comments
The December CTP of ADO.NET Data Services (also known as Project Astoria) has been Released! You can download the CTP here as part of the ASP.NET 3.5 Extensions preview release . For more information on ADO.NET Data Services check out http://blogs...
ADO.NET Blog
Entity Framework Beta 3 - Breaking Changes
Posted
over 6 years ago
by
dpblogs
1
Comments
There were a number of changes to the Entity Framework between Beta 2 and Beta 3 that will require updates to existing source code. These breaking changes can be found here including the mitigation for adjusting to the new behavior, and a side by side...
ADO.NET Blog
Entity Designer CTP2
Posted
over 6 years ago
by
dpblogs
27
Comments
You asked and we listened. The Dec 2007 CTP of the Entity Designer is available here and works over Visual Studio 2008 RTM and the Entity Framework runtime beta 3. We have enhanced the designer to enable several new scenarios and fixed a slew of bugs...
ADO.NET Blog
ADO.NET Entity Framework Beta 3 Released!
Posted
over 6 years ago
by
dpblogs
45
Comments
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...
ADO.NET Blog
New ADO.NET Team Members - Part 3
Posted
over 6 years ago
by
dpblogs
0
Comments
Alex recently joined the ADO.NET Team as a Metadata PM for the EDM and EF, and is an avid blogger. You can check out Alex's personal blog at http://blogs.msdn.com/alexj/ to learn more about him and what he is working on, and expect to see more of Alex...
ADO.NET Blog
New ADO.NET Team Members - Part 2
Posted
over 6 years ago
by
dpblogs
9
Comments
Hi – I’m Faisal Mohamood and I’m a Program Manager for LINQ to SQL and Object Services for Entity Framework. I’m a fairly recent addition to the team, and prior to this I was Program Manager on the Visual Studio Platform team, looking after parts of MSBuild...
ADO.NET Blog
New ADO.NET Team Members - Part 1
Posted
over 6 years ago
by
dpblogs
6
Comments
My name is Diego Vega and I joined the Entity Framework team in last October. I am the new Program Manager working on LINQ to Entities & Databinding. My background is in software development and before coming to Microsoft I worked for ISVs and...
ADO.NET Blog
Connecting to Pre-Release Versions of SQL Server 2008
Posted
over 6 years ago
by
dpblogs
4
Comments
Testing has identified some issues connecting to versions of SQL Server 2008 from applications using the .NET Framework v2.0 SP1 or developers using Visual Studio 2005 or Visual Studio 2008. These connectivity issues should be considered before upgrading...
ADO.NET Blog
Entity Data Model Designer Video
Posted
over 6 years ago
by
dpblogs
10
Comments
We’ve created a Camtasia™ video, available here , demonstrating some of the features of the Entity Data Model Designer. This video was just shown at VSLive in Las Vegas and demonstrates some of the mapping capabilities of the tools and runtime...
ADO.NET Blog
Getting Started with the Entity Framework
Posted
over 6 years ago
by
dpblogs
5
Comments
We recently posted some great new samples to help you get started with the Entity Framework. Check out these and more samples on our Codeplex site at http://www.codeplex.com/adonetsamples/Release/ProjectReleases.aspx?ReleaseId=7792 Elisa...
ADO.NET Blog
LINQ to DataSet DataBinding
Posted
over 6 years ago
by
dpblogs
1
Comments
Interested in hearing more? Check out this great post by Erick Thompson our DataSet PM on his blog .
Page 11 of 14 (330 items)
«
9
10
11
12
13
»