Vikram Lakhotia
The Online Weblog of Vikram Lakhotia
Sign in
|
Join
Home
Contact
About
RSS
Atom
Search
Tags
.NET
.NET FAQ
301 Redirect
AJAX
API
ASP.NET
asp.Net 3.5
Asp.Net 3.5 extension
Asp.Net 4.0
Asp.Net Ajax Extension
Asp.net MVC
Atlas
Award
Base Class Library
BCL
C#
Caching
Certification
ClientScript
Community News
comparison
compression
Content Page
Cookies
Database
deployment
Design Pattern
Dropdownlist
Encode
Event Handler
EventHandler
FindControl
Formview
General Software Development
Goto
GridView
Historical Debugger
How To
HTML
HTML Encode
IE8
IIS
IN
Incremental Crawl
Javascript
Label
LINQ
ListBox
Machine.config
Master
Master Page
Meta Tag
Microsft
MVC
MVP
MYSQL
NET
NetBook
Network
News
Observer
Open Format
Open Offcie
Oracle
ParseControl
Performance
Personal
Release
Request Validation
Security
SEO
Session
Sharepoint
Silverlight
SQL Server
SQL Server 2008
StopWatch
TechDays
teched
Training
Virtual Techdays
visual studio
Visual Studio 2010
Web Config
Web Platform Installer
Web Platform Installer 2.0
web.config
Windows 7
Windows Application
windows Forms
Windows Server 2008
Word 2007
Word Automation
Wrap
Sponsors
advertise here
News
Recieved ASIA MVP Certification Hero Award 2009
Recieved MVP Award for the year 2009
For my previous Posts, do checkout
VikramLakhotia.com
Visitors Map
Twitter Feed
Navigation
Home
Blogs
Archives
January 2011 (1)
October 2010 (1)
September 2010 (1)
August 2010 (6)
July 2010 (1)
May 2010 (1)
April 2010 (13)
February 2010 (7)
January 2010 (2)
October 2009 (3)
September 2009 (5)
August 2009 (6)
July 2009 (3)
June 2009 (1)
May 2009 (4)
April 2009 (6)
March 2009 (8)
February 2009 (2)
January 2009 (4)
December 2008 (2)
October 2008 (2)
September 2008 (1)
August 2008 (1)
July 2008 (6)
June 2008 (2)
May 2008 (2)
April 2008 (4)
March 2008 (6)
February 2008 (15)
What I Follow
Joe
MY Personal site
ScottGu
Just Like That
Farghana
Why Not
MY MVP Profile
forums.asp.net
April 2010 - Posts
1
Comments
LINQ and Aggregate function
by
vik20000in
LINQ also provides with itself important aggregate function. Aggregate function are function that are applied over a sequence like and return only one value like Average, count, sum, Maximum etc… Below are some of the Aggregate functions provided with...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
1
Comments
Working with Joins in LINQ
by
vik20000in
While working with data most of the time we have to work with relation between different lists of data. Many a times we want to fetch data from both the list at once. This requires us to make different kind of joins between the lists of data. LINQ support...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
1
Comments
17 new features in Visual Studio 2010
by
vik20000in
Visual studio 2010 has been released to RTM a few days back. This release of Visual studio 2010 comes with a big number of improvements on many fronts. In this post I will try and point out some of the major improvements in Visual Studio 2010. 1) Visual...
Filed under:
.NET
,
ASP.NET
,
visual studio
,
Visual Studio 2010
2
Comments
Using the StopWatch class to calculate the execution time of a block of code
by
vik20000in
Many of the times while doing the performance tuning of some, class, webpage, component, control etc. we first measure the current time taken in the execution of that code. This helps in understanding the location in code which is actually causing the...
Filed under:
.NET
,
ASP.NET
,
How To
,
Performance
,
StopWatch
1
Comments
LINQ and the use of Repeat and Range operator
by
vik20000in
LINQ is also very useful when it comes to generation of range or repetition of data. We can generate a range of data with the help of the range method. var numbers = from n in Enumerable.Range(100, 50) select new {Number = n, OddEven = n % 2 == 1 ? "odd...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
1
Comments
Retrieving only the first record or record at a certain index in LINQ
by
vik20000in
While working with data it’s not always required that we fetch all the records. Many a times we only need to fetch the first record, or some records in some index, in the record set. With LINQ we can get the desired record very easily with the help of...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
1
Comments
LINQ and conversion operators
by
vik20000in
LINQ has a habit of returning things as IEnumerable. But we have all been working with so many other format of lists like array ilist, dictionary etc that most of the time after having the result set we want to get them converted to one of our known format...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
2
Comments
Using set operation in LINQ
by
vik20000in
There are many set operation that are required to be performed while working with any kind of data. This can be done very easily with the help of LINQ methods available for this functionality. Below are some of the examples of the set operation with LINQ...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
1
Comments
Grouping data in LINQ with the help of group keyword
by
vik20000in
While working with any kind of advanced query grouping is a very important factor. Grouping helps in executing special function like sum, max average etc to be performed on certain groups of data inside the date result set. Grouping is done with the help...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
4
Comments
LINQ and ordering of the result set
by
vik20000in
After filtering and retrieving the records most of the time (if not always) we have to sort the record in certain order. The sort order is very important for displaying records or major calculations. In LINQ for sorting data the order keyword is used...
Filed under:
.NET
,
ASP.NET
,
How To
,
LINQ
More Posts
Next page »