Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

January 2008 - Posts

LINQ - "Where" Extension Method

Here is simple LINQ example where I have used Extension methods "Where", to select the participants whose score is greater than 80. var participants =Competition.GetParticipants().Where(participant=> participant.Score > 80).OrderByDescending(participant
posted by Shahed | 0 Comments

C# Programming Guides in MSDN

Inside a C# Program Main() and Command Line Arguments (C# Programming Guide) Types (C# Programming Guide) Arrays (C# Programming Guide) Strings (C# Programming Guide) Statements, Expressions, and Operators (C# Programming Guide) (Anonymous Functions,
posted by Shahed | 0 Comments

Some other LINQ related links from MSDN

The LINQ PROJECT   Getting Started (LINQ to SQL) Provides a condensed overview of LINQ to SQL along with information about how to get started using LINQ to SQL. Programming Guide (LINQ to SQL) Provides steps for mapping, querying, updating,
posted by Shahed | 0 Comments

Object Relational Designer (O/R Designer) for LINQ to SQL

The Object Relational Designer (O/R Designer) provides a visual design surface for creating LINQ to SQL entity classes and associations (relationships) that are based on objects in a database.source: http://msdn2.microsoft.com/en-us/bb384429.aspx O/R
posted by Shahed | 0 Comments

Visual Studio Debug Tips: Memory Window

Visual Studio Debug Tips: Memory Window http://msdn2.microsoft.com/en-us/library/s3aw423e(VS.80).aspxhttp://msdn2.microsoft.com/en-us/library/9k643651(VS.80).aspxWill be useful the next time I guess!
posted by Shahed | 0 Comments

ASP.NET Web Service Tips: Documentation

wsdlHelpGenerator makes it very easy to write our Own Help page for the ASP.NET Web service application. Sometimes you might not like the autogenerated Help page and want to add your own company logo and put your own descriptive help page. The following
posted by Shahed | 0 Comments

January 2008 - Microsoft Technical Rollup Mail

January Technical Roll-up emails are now up to date on http://blogs.technet.com/trm/
posted by Shahed | 0 Comments