Browse by Tags

All Tags » LINQ (RSS)

ASP.NET Dynamic Data Preview Available by ScottGu

A few months ago we released an ASP.NET 3.5 Extensions Preview that contained a bunch of new features that will be shipping later this year (including ASP.NET AJAX Improvements, ASP.NET MVC, ASP.NET Silverlight Support, and ASP.NET Dynamic Data). The...
Filed under: , , ,

March 14th Links: ASP.NET, ASP.NET AJAX, ASP.NET MVC and .NET by ScottGu

I'm slowly recovering from keynoting at MIX last week, and have been digging my way out of backlogged email the last few days.  I'm going to try and finish catching up on blog comments this weekend - apologies for the delay in getting back to some...

Feb 17th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET by ScottGu

Here is the latest in my link-listing series .  Also check out my ASP.NET Tips, Tricks and Tutorials page for links to popular articles I've done myself in the past. ASP.NET Top 10 Best Practices for Production ASP.NET Applications : Kyle has a nice...

Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS by ScottGu

I just arrived back from my trip from Asia, and decided to celebrate (since I'm jet-lagged and can't sleep) with a new post in my link-listing series .  You can check out my ASP.NET Tips, Tricks and Tutorials page for links to popular articles I...

Dynamic LINQ (Part 1: Using the LINQ Dynamic Query Library) by ScottGu

LINQ (language integrated query) is one of the new features provided with VS 2008 and .NET 3.5.  LINQ makes the concept of querying data a first class programming concept in .NET, and enables you to efficiently express queries in your programming...
Filed under: , , ,

New ASP.NET Dynamic Data Support by ScottGu

The ASP.NET 3.5 Extensions CTP we shipped this past weekend contains a bunch of great new features. One of the cool new features is something we call "ASP.NET Dynamic Data Support".  In a nutshell this enables you to really quickly build...
Filed under: , , ,

Visual Studio 2008 and .NET 3.5 Released by ScottGu

Today we shipped Visual Studio 2008 and .NET 3.5. You can download the final release using one of the links below: If you are a MSDN subscriber, you can download your copy from the MSDN subscription site (note: some of the builds are just finishing being...

Tip/Trick: Building a ToJSON() Extension Method using .NET 3.5 by ScottGu

Earlier this year I blogged about a new language extensibility feature of C# and VB called "Extension Methods". Extension methods allow developers to add new methods to the public contract of an existing CLR type, without having to sub-class it or recompile...

The C# ?? null coalescing operator (and using it with LINQ) by ScottGu

One of the subtle (but cool) language features of C# is the ?? "null coalescing" operator. This provides a nice, terse way to check whether a value is null, and if so return an alternate value. Simple Example Usages Several folks have blogged about the...
Filed under: , , ,

LINQ to SQL (Part 9 - Using a Custom LINQ Expression with the <asp:LinqDatasource> control) by ScottGu

Over the last few weeks I've been writing a series of blog posts that cover LINQ to SQL. LINQ to SQL is a built-in O/RM (object relational mapper) that ships in the .NET Framework 3.5 release, and which enables you to model relational databases using...
Filed under: , , ,
More Posts Next page »