Articles Tagged 'sql'
ADO.NET Team Blog
11/16/2009
The goal of this walkthrough is to demonstrate a basic scenario for the use of the Self-Tracking Entities feature of Entity Framework. Self-Tracking Entities consist on a set of code generation templates based on Text Template Transformation Too...
ADO.NET Team Blog
11/13/2009
This post covers Code Only improvements in the CTP2 release for VS 2010 Beta2. This walkthrough shows how you can change the default model like specifying property facets and navigation property inverses as well change the default mapping by chang...
ADO.NET Team Blog
11/5/2009
In a previous post , we walked through the designer’s “out of the box†database schema generation experience. In this post, we show how some new designer features in VS2010 Beta 2 integrate with this capability, then we pop the hood and show how e...
I’m doing keynotes at two big conferences later this month: ASP.NET Connections in Las Vegas: November 9th to 12th I’ll be doing a keynote talking about ASP.NET 4 and VS 2010 at the ASP.NET Connections conference next week. I’ll also be doing an ...
ADO.NET Team Blog
11/1/2009
This is the time when we, the ADO.NET Providers team, take a step back, review our goals for the next release and identify areas for investments. We view YOU as a key stakeholder in this process and would like to gather your inputs in this survey,...
Caching of frequently used data greatly increases the scalability of your application since you can avoid repeated queries on database, file system or to webservices. When objects are cached, it can be retrieved from the cache which is lot faster ...
ADO.NET Team Blog
10/22/2009
Providers for Entity Framework 3.5 will work unmodified against Entity Framework 4.0. Also, most of the features and improvements introduced in Entity Framework 4.0 will just work against an Entity Framework 3.5 provider. However, there are severa...
ADO.NET Team Blog
10/20/2009
Visual Studio 2010 and the .NET Framework 4 Beta 2 are now available for download by MSDN subscribers and will available to the rest of the world on Wednesday. Beta 2 as well the VS2010 Launch date of March 22, 2010 were announced this morning on ...
LINQ to SQL by default loads related entities and entity sets by using Lazy Loading. Which means if you retrieve a list of entities in a query that references other entities these other entities are not actually loaded unless you physically access...
Over the course of a couple of website developments I created a simple content management system. I know there are loads our there already, but I wanted something simple and easy for non-techie users. It runs on ASP.NET MVC, has an elegant extensi...