Posted by: Suprotim Agarwal ,
on 8/12/2011
Category LINQ
Views:
57895
Abstract:
In LINQ, queries have two different behaviors of execution: immediate and deferred. In this article, we will take a quick overview of how Deferred query execution and Immediate Query Execution works in LINQ
Read More ...
|
Posted by: Suprotim Agarwal ,
on 7/3/2011
Category LINQ
Views:
49889
Abstract:
PLINQ provides support for Parallel programming and is closely related to the Task Parallel Library. In very simple words, PLINQ enables a query to automatically take advantage of multiple processors. In this article, we will see a simple example of transforming a LINQ query to PLINQ.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 6/27/2011
Category LINQ
Views:
153529
Abstract:
I have been writing some LINQ tutorials, tips and How To's on my blog and most of these posts contain short snippets that can be used in your project or that demonstrate how to use LINQ effectively. I wanted to share them with my readers over here. These short examples demonstrate how to use a particular LINQ feature and are listed over here in no particular order.
Read More ...
|
Posted by: Pravinkumar Dabade ,
on 5/30/2011
Category LINQ
Views:
45961
Abstract:
In this article, we will see how to perform a JOIN between a Collection and XML Data using LINQ.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 8/29/2010
Category LINQ
Views:
127278
Abstract:
In this article, we will learn LINQ To XML using some ‘How Do I’ kind of examples.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 7/6/2010
Category LINQ
Views:
67182
Abstract:
In this article, we will use LINQ to print the Longest and Shortest Type Name in .NET 4.0.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 5/23/2010
Category LINQ
Views:
75883
Abstract:
I was recently going through the forums and found some developers struggling with queries involving Classes with One-To-Many Relationship. In this article, I will demonstrate how to query a Hierarchical Parent-Child Structure using LINQ.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 5/7/2010
Category LINQ
Views:
63584
Abstract:
This article demonstrates how to query a Web Service’s public API using LINQ
Read More ...
|
Posted by: Suprotim Agarwal ,
on 4/7/2010
Category LINQ
Views:
55812
Abstract:
: In this article, we will read an XML file containing Master-Detail records and represent it as an object using LINQ.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 3/18/2010
Category LINQ
Views:
56544
Abstract:
In this article, we will see how to read and filter the RSS Feed of dotnetcurry.com using LINQ to XML.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 3/16/2010
Category LINQ
Views:
66676
Abstract:
I was recently working on a requirement where I had to read a XML file and then identify a key, value pair and load it into a Dictionary object. I used LINQToXML to solve this requirement.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 1/17/2010
Category LINQ
Views:
79856
Abstract:
In Part I of this article, I shared some common operations on List. In this article, I will share some advanced examples that demonstrate common operations on List
Read More ...
|
Posted by: Suprotim Agarwal ,
on 1/15/2010
Category LINQ
Views:
81332
Abstract:
In this article, I will demonstrate some common operations on List using LINQ
Read More ...
|
Posted by: Suprotim Agarwal ,
on 12/8/2009
Category LINQ
Views:
42469
Abstract:
In this article, I will demonstrate a simple example of converting a List<> to XML using LINQ.
Read More ...
|
Posted by: Suprotim Agarwal ,
on 11/16/2009
Category LINQ
Views:
39593
Abstract:
We often come across requirements where data needs to be partitioned into two parts and then return one of the parts. The Partition Operators in LINQ helps you partition data. In this article, we will see how to use these operators to partition collections
Read More ...
|
|