Sign In
ADO.NET, LINQ, DataSet and other fun .NET technology
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Conferences
Data Binding
Database
DataSet
Entty Framework
LINQ
LINQ to DataSet
LINQ to Entities
Samples
Archive
Archives
July 2008
(1)
May 2008
(4)
November 2007
(1)
October 2007
(3)
September 2007
(1)
August 2007
(1)
July 2007
(1)
May 2007
(4)
March 2007
(2)
February 2007
(2)
October 2006
(1)
September 2006
(2)
September, 2006
MSDN Blogs
>
ADO.NET, LINQ, DataSet and other fun .NET technology
>
September, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
ADO.NET, LINQ, DataSet and other fun .NET technology
Exploring Extension methods – potential method invocation problems
Posted
over 6 years ago
by
MSDNArchive
3
Comments
Extension methods are one of the many great new features of C# 3.0. They basically allow you to declare static methods that appear to be instance methods of a type, even if you have no access to the type (sealed classes, etc). The key point is that you...
ADO.NET, LINQ, DataSet and other fun .NET technology
When to not cast to Anonymous types
Posted
over 6 years ago
by
MSDNArchive
0
Comments
I was doing some tests on LINQ over DataTables where I was selecting into a new anonymous type. The code was quite simple, just doing a basic select. var res = from n in contacts.Contact where n.LastName.StartsWith("L") select new {n}; ...
Page 1 of 1 (2 items)