Browse by Tags

All Tags » Visual Studio » LINQ (RSS)

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: , , ,

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 8 - Executing Custom SQL Expressions) 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...

LINQ to SQL (Part 7 - Updating our Database using Stored Procedures) 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...

The asp:ListView control (Part 1 - Building a Product Listing Page with Clean CSS UI) by ScottGu

One of the new controls in ASP.NET 3.5 that I think will be very popular is the <asp:ListView> control. The ListView control supports the data editing, insertion, deleting, paging and sorting semantics of higher-level controls like the GridView...

Great New ASP.NET 2.0 Data Tutorials Published by ScottGu

Over the last year Scott Mitchell has written 75 awesome data access tutorials covering ASP.NET 2.0 and VS 2005. You can read all of them for free on the www.asp.net site (VB and C# versions are provided for each tutorial). Earlier this week we published...
More Posts Next page »