Pages
-
Recent Posts
- Entertainment Industry Embraces New Business Model: Suing Google For Third-Party Android Apps That ‘Promote Piracy’
- FTC Reminds EPIC That Suing The FTC To Get It To Investigate Google Might Not Be The Best Idea
- [one-liner]: Using the Linux Command, dirsplit, to Dynamically Backup a Directory Over Multiple DVDs
- European Commission Suggests ACTA’s Opponents Don’t Have ‘Democratic Intentions’
- I can’t design in the browser
Archives
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
Meta
Category Archives: LINQ
PHPHOST BLOG
Web Hosting Related Articles You May Need
PLINQ: Set Degree of Parallelism using WithDegreeOfParallelism
Degree of parallelism is the maximum number of ‘concurrently’ executing tasks that will be used to process the query. A query could become a long running one if it is waiting for a resource to be released or hardware to respond. PLINQ can paralleli… Continue reading
Posted in LINQ, Syndicated
Leave a comment
PLINQ: Set Degree of Parallelism using WithDegreeOfParallelism
Degree of parallelism is the maximum number of ‘concurrently’ executing tasks that will be used to process the query. A query could become a long running one if it is waiting for a resource to be released or hardware to respond. PLINQ can paralleli… Continue reading
Posted in LINQ, Syndicated
Leave a comment
50 LINQ Examples Now in LINQPad
I had recently written an article on 50 LINQ Examples, Tips and How To’s.
Software Developer and geek John Flynn took these examples and did a great job compiling these queries into a format which can be executed using LINQPad.
You can download the… Continue reading
Posted in LINQ, Syndicated
Leave a comment
50 LINQ Examples Now in LINQPad
I had recently written an article on 50 LINQ Examples, Tips and How To’s.
Software Developer and geek John Flynn took these examples and did a great job compiling these queries into a format which can be executed using LINQPad.
You can download the… Continue reading
Posted in LINQ, Syndicated
Leave a comment
LINQ: Generate Odd Numbers using Parallel Execution
A couple of months ago, I had written on Generate Odd Numbers within a Range using LINQ. In that post, I had demoed how to ‘sequentially’ generate odd numbers within a Range. However what if you have to generate a large set of numbers and are not i… Continue reading
Posted in LINQ, Syndicated
Leave a comment
LINQ: Generate Odd Numbers using Parallel Execution
A couple of months ago, I had written on Generate Odd Numbers within a Range using LINQ. In that post, I had demoed how to ‘sequentially’ generate odd numbers within a Range. However what if you have to generate a large set of numbers and are not i… Continue reading
Posted in LINQ, Syndicated
Leave a comment
LINQ: Compare two Sequences
How do you compare two sequences using LINQ? The answer is by using the Enumerable.SequenceEqual(). SequenceEqual() compares the source and target sequences elements, by using the default equality comparer for their type, and returns a Boolean.
Note: C… Continue reading
Posted in LINQ, Syndicated
Leave a comment
LINQ: Compare two Sequences
How do you compare two sequences using LINQ? The answer is by using the Enumerable.SequenceEqual(). SequenceEqual() compares the source and target sequences elements, by using the default equality comparer for their type, and returns a Boolean.
Note: C… Continue reading
Posted in LINQ, Syndicated
Leave a comment
LINQ: Calculate Average File Size in C#
Let us see a simple code using LINQ and C# that calculates the average FileSize of the files kept in a folder.
First import the following namespaces:
using System.Linq;
using System.IO;
Then write the following code:
class Program
{
static v… Continue reading
Posted in C#, LINQ, Syndicated
Leave a comment
LINQ: Calculate Average File Size in C#
Let us see a simple code using LINQ and C# that calculates the average FileSize of the files kept in a folder.
First import the following namespaces:
using System.Linq;
using System.IO;
Then write the following code:
class Program
{
static v… Continue reading
Posted in C#, LINQ, Syndicated
Leave a comment
LATEST NEWS
