Sign in
|
Join
|
Help
Incoherent Rambling
.Net, coding, architecture and life in general
See also:
Other Geeks@INDC
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Tags
.NET
.NET Client Profile
Agile
AJAX
Anonymous Type
antivirus DirectX troubleshooting
Architecture
ASP.NET
Authentication
Back to Basic
BizTalk
Blab
Blend
Browser
Bug
C#
cloud computing
code
Collaboration
commuting
Computer Language
conference
Credential
Customization
Design
Events
Excel
Fun
game
Generic
Generic Extension Method
Google
Hyper-V
IE
ie9
InfoPath 2010
internet explorer
Interops
JavaScript
Joke
jQuery
K2 Blackpearl
kata
Kerberos
LINQ
Linux
Live
Marketplace
Mashup
meeting
MEF
MMORPG
mock
moles
MSDN Day
Ninject
novel
Office
OOB
OpenXml
Pattern
plugin
podcast
popfly
Presentation
Project Management
Rant
readability
Scrum
SharePoint
SharePoint 2010
Sharing
silverlight
SQL
Star Wars
TFS
Tips
Tools
unit test
Unity
Video
virtualization
Vista
Visual Studio
VMWare
WCF
Web Service
weird
Windows 7
Windows 8
Windows Form
Windows Live
Windows Mobile
Work Item
WP7
WPF
WWF
xaml
xml
yahoo! pipes
Navigation
Home
Blogs
Videos
Curriculum
eBooks
Jobs
Forum
Downloads
Archives
September 2011 (1)
March 2011 (6)
February 2011 (3)
January 2011 (2)
July 2010 (2)
May 2010 (1)
April 2010 (2)
March 2010 (1)
December 2009 (1)
September 2009 (4)
July 2009 (5)
June 2009 (6)
May 2009 (2)
April 2009 (2)
March 2009 (3)
December 2008 (4)
November 2008 (6)
October 2008 (8)
September 2008 (14)
August 2008 (1)
July 2008 (3)
June 2008 (6)
May 2008 (7)
April 2008 (4)
February 2008 (2)
January 2008 (4)
December 2007 (2)
November 2007 (1)
September 2007 (2)
August 2007 (3)
July 2007 (4)
June 2007 (2)
May 2007 (5)
April 2007 (8)
March 2007 (6)
January 2007 (2)
November 2006 (1)
October 2006 (3)
September 2006 (2)
August 2006 (1)
July 2006 (2)
May 2006 (4)
April 2006 (3)
March 2006 (1)
October 2005 (1)
September 2005 (7)
May 2005 (2)
April 2005 (2)
January 2005 (1)
December 2004 (3)
Browse by Tags
All Tags
»
LINQ
(
RSS
)
.NET
Anonymous Type
C#
Computer Language
Generic
Pattern
SharePoint
SQL
Wednesday, November 05, 2008 4:54 PM
LINQ and DISTINCT... A Quick Note
A coworker of mine was asking me on how to use get distinct record with LINQ to object. I did a quick spike to test this. I wrote a simple LINQ query over a string array to show him how to do it. var names = new [] { "Unyil" , "Ucok"...
Posted by
Jimmy Chandra
|
4 comment(s)
Filed under:
LINQ
Thursday, October 16, 2008 5:38 PM
Unexpected Method Group Placement
This thing has been around since C# 2.0, but recently, I saw it in unexpected places as a replacement for a Predicate<T> in a parameter. Usually you found it as the right side of an assignment / removal of an event handler such as: //using Method...
Posted by
Jimmy Chandra
|
2 comment(s)
Filed under:
C#
,
LINQ
Monday, September 22, 2008 4:00 PM
Operation could destabilize the runtime
I was trying to reproduce Repository pattern that Rob Conery was using in his MVC Store Front project in my own project. Continuing with the interface programming style hype, I decided to make everything implement some sort of an interface. So my domain...
Posted by
Jimmy Chandra
|
4 comment(s)
Filed under:
SQL
,
.NET
,
LINQ
,
Generic
,
Anonymous Type
Sunday, January 06, 2008 4:05 PM
Adapter Pattern Case Study: LINQ to SharePoint SPListCollection
While helping my co-worker on a problem we stumbled into a quite interesting thing regarding SharePoint SPListCollection class. SPListCollection, as it turns out, is not derived from IEnumerable interface (see http://msdn2.microsoft.com/en-us/library...
Posted by
Jimmy Chandra
|
1 comment(s)
Filed under:
LINQ
,
Pattern
,
SharePoint
Friday, September 16, 2005 11:14 PM
Preview of C# version 3.0 features
Wow, C# 2.0 is not officially out of the door, C# 3.0 is already rearing its head :). In this post I'll go through some of the new features of the 3.0 version of C#. Feature 1: Implicitly typed local variables. Variable declaration has become simpler...
Posted by
Jimmy Chandra
| with
no comments
Filed under:
.NET
,
Computer Language
,
C#
,
LINQ