<?xml version="1.0" ?><rss version="2.0" xmlns:ec="http://www.eggheadcafe.com"><channel><title>eggheadcafe.com LINQ FAQs</title><link>http://www.eggheadcafe.com</link><pubDate>Fri, 26 Apr 2013 13:36:52 GMT</pubDate><description>EggHeadCafe - The .NET developer's portal of choice</description><language>en-us</language><item><title><![CDATA[LINQ StartsWith]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/171b59c8-7715-4e76-83fd-ed32178b8fca/linq-startswith.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/171b59c8-7715-4e76-83fd-ed32178b8fca/linq-startswith.aspx]]></link><description><![CDATA[Equivalent of Like opertor  in LINQ&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/171b59c8-7715-4e76-83fd-ed32178b8fca/linq-startswith.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 08 Dec 2011 09:58:20 GMT</pubDate></item><item><title><![CDATA[LINQ Take & Skip]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/2a294f36-0cd8-40f2-81c3-1b8da4aae454/linq-take--skip.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/2a294f36-0cd8-40f2-81c3-1b8da4aae454/linq-take--skip.aspx]]></link><description><![CDATA[In some cases we want to Skip few items and take the remaining like in a ListLINQ offers a greate way using Take() and Skip() Methods&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/2a294f36-0cd8-40f2-81c3-1b8da4aae454/linq-take--skip.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 19 Sep 2011 12:33:22 GMT</pubDate></item><item><title><![CDATA[LINQ OrderBY]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/4cc3b666-161c-4466-ac04-e947162afa1d/linq-orderby.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/4cc3b666-161c-4466-ac04-e947162afa1d/linq-orderby.aspx]]></link><description><![CDATA[LINQ offers a greate way to minimize your code.  Here I will describe a small example of OrderBy using LINQ to sort a DropDownList.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/4cc3b666-161c-4466-ac04-e947162afa1d/linq-orderby.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 18 Sep 2011 23:04:41 GMT</pubDate></item><item><title><![CDATA[LINQ Join Operation Sample]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/1b671f70-85f9-4815-b772-cdc45b163025/linq-join-operation-sample.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/1b671f70-85f9-4815-b772-cdc45b163025/linq-join-operation-sample.aspx]]></link><description><![CDATA[For the sample i have taken theis generic list of type Player and Player_Data , which i will use this Lists as collections and perform the joins operations  using Linq.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/1b671f70-85f9-4815-b772-cdc45b163025/linq-join-operation-sample.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 04 Aug 2011 09:40:38 GMT</pubDate></item><item><title><![CDATA[Sum the number of times a digit appears in a sequence]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/86a5a018-5422-4080-8afb-123a1fe9e4e3/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/86a5a018-5422-4080-8afb-123a1fe9e4e3/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx]]></link><description><![CDATA[This was a response to my Google+ LINQ Quiz:Write a LINQ query that provides the sum of the number of times "1" is found in the sequence 1...100.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/86a5a018-5422-4080-8afb-123a1fe9e4e3/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 08 Jul 2011 18:48:12 GMT</pubDate></item><item><title><![CDATA[Convert IEnumerable to DataTable]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/117fec49-00bd-43c9-8068-5dbc9d2fb7c8/convert-ienumerable-to-datatable.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/117fec49-00bd-43c9-8068-5dbc9d2fb7c8/convert-ienumerable-to-datatable.aspx]]></link><description><![CDATA[One of the problems with converting an IEnumerable to DataTable is the slowness of the reflection required. Here is a better way.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/117fec49-00bd-43c9-8068-5dbc9d2fb7c8/convert-ienumerable-to-datatable.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 26 Jun 2011 12:54:43 GMT</pubDate></item><item><title><![CDATA[Using LINQ Aggregate Method to concatenate strings to delimited string]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f7d137e4-abe2-4e8e-a99b-8c9b660516d7/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f7d137e4-abe2-4e8e-a99b-8c9b660516d7/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx]]></link><description><![CDATA[The LINQ Aggregate extension method is very powerful. However, there can be performance issues on very large datasets, in which case the use of StringBuilder may be preferable.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/f7d137e4-abe2-4e8e-a99b-8c9b660516d7/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 11 Jun 2011 13:24:40 GMT</pubDate></item><item><title><![CDATA[How to use Contains function in Linq to Sql]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/a7c06bca-2ddd-4bb3-8168-fa92204e01aa/how-to-use-contains-function-in-linq-to-sql.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/a7c06bca-2ddd-4bb3-8168-fa92204e01aa/how-to-use-contains-function-in-linq-to-sql.aspx]]></link><description><![CDATA[We can also use the Contains function in searching a data in the database in Linq to Sql.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/a7c06bca-2ddd-4bb3-8168-fa92204e01aa/how-to-use-contains-function-in-linq-to-sql.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 09 May 2011 08:19:59 GMT</pubDate></item><item><title><![CDATA[How to use SqlMethods.Like in Linq to Sql]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/1b7b1a84-38f0-443c-880a-0aa1992cd711/how-to-use-sqlmethodslike-in-linq-to-sql.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/1b7b1a84-38f0-443c-880a-0aa1992cd711/how-to-use-sqlmethodslike-in-linq-to-sql.aspx]]></link><description><![CDATA[This topic will show us on how to search a data in a database using SqlMethods.Like in Linq to Sql&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/1b7b1a84-38f0-443c-880a-0aa1992cd711/how-to-use-sqlmethodslike-in-linq-to-sql.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 09 May 2011 08:21:19 GMT</pubDate></item><item><title><![CDATA[How to use StartsWith function in Linq to Sql]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/6cfe6c86-21db-4659-ac7d-36e7a8651618/how-to-use-startswith-function-in-linq-to-sql.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/6cfe6c86-21db-4659-ac7d-36e7a8651618/how-to-use-startswith-function-in-linq-to-sql.aspx]]></link><description><![CDATA[This topic will show us on how to find data that starts with a given character using StartsWith function in Linq to Sql.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/6cfe6c86-21db-4659-ac7d-36e7a8651618/how-to-use-startswith-function-in-linq-to-sql.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 08 May 2011 21:44:00 GMT</pubDate></item><item><title><![CDATA[Skip and Take in Linq to Sql in C#]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/b4c47bd9-1371-45c9-89fe-f14970e01c7e/skip-and-take-in-linq-to-sql-in-c.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/b4c47bd9-1371-45c9-89fe-f14970e01c7e/skip-and-take-in-linq-to-sql-in-c.aspx]]></link><description><![CDATA[This Topic will show you on how to skip and take rows using Linq to Sql in C#.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/b4c47bd9-1371-45c9-89fe-f14970e01c7e/skip-and-take-in-linq-to-sql-in-c.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 09 May 2011 08:20:35 GMT</pubDate></item><item><title><![CDATA[Skip and Take in Linq to Sql in VB.Net]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/2419b8b3-0560-48d1-9ae1-7878b9a720ea/skip-and-take-in-linq-to-sql-in-vbnet.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/2419b8b3-0560-48d1-9ae1-7878b9a720ea/skip-and-take-in-linq-to-sql-in-vbnet.aspx]]></link><description><![CDATA[We could get specific rows in the database table by skip and take using Linq to Sql. Here is the sample code.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/2419b8b3-0560-48d1-9ae1-7878b9a720ea/skip-and-take-in-linq-to-sql-in-vbnet.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 06 May 2011 08:08:17 GMT</pubDate></item><item><title><![CDATA[LINQ using OrderBy and ThenBy]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/295880e7-46dd-47a6-8c95-7e49d2f3ca85/linq-using-orderby-and-thenby.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/295880e7-46dd-47a6-8c95-7e49d2f3ca85/linq-using-orderby-and-thenby.aspx]]></link><description><![CDATA[Multiple Order By Using Linq i.e using Order by with more than one Variable...&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/295880e7-46dd-47a6-8c95-7e49d2f3ca85/linq-using-orderby-and-thenby.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 12 Jul 2011 07:43:10 GMT</pubDate></item><item><title><![CDATA[How to show Distinct data using Linq to SQL]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/ed3e5fdf-96fa-40cf-81c2-e7352a4faa59/how-to-show-distinct-data-using-linq-to-sql.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/ed3e5fdf-96fa-40cf-81c2-e7352a4faa59/how-to-show-distinct-data-using-linq-to-sql.aspx]]></link><description><![CDATA[We can show Distinct data in gridview using Linq to SQL. We can compare in the result how the distinct function works in Linq to sql. Here's how.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/ed3e5fdf-96fa-40cf-81c2-e7352a4faa59/how-to-show-distinct-data-using-linq-to-sql.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 04 May 2011 09:44:48 GMT</pubDate></item><item><title><![CDATA[LINQ To SQL Selecting mulitple fields in a database table]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/d0b324d3-eb78-41bb-93dd-19a9110c8092/linq-to-sql-selecting-mulitple-fields-in-a-database-table.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/d0b324d3-eb78-41bb-93dd-19a9110c8092/linq-to-sql-selecting-mulitple-fields-in-a-database-table.aspx]]></link><description><![CDATA[We can select multiple fields in a given database tables using Linq to sql. I use AdventureWorks as my database in this sample app and to show you how it works i bind the results in gridview control.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/d0b324d3-eb78-41bb-93dd-19a9110c8092/linq-to-sql-selecting-mulitple-fields-in-a-database-table.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 04 May 2011 09:43:08 GMT</pubDate></item><item><title><![CDATA[How to bind gridview using Linq to SQL]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/fddc345e-2422-48e8-b958-6fb2b15787ef/how-to-bind-gridview-using-linq-to-sql.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/fddc345e-2422-48e8-b958-6fb2b15787ef/how-to-bind-gridview-using-linq-to-sql.aspx]]></link><description><![CDATA[We can easily bind gridview using linq to sql. Assuming that your using AdventureWorks as your database.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/fddc345e-2422-48e8-b958-6fb2b15787ef/how-to-bind-gridview-using-linq-to-sql.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 04 May 2011 09:41:56 GMT</pubDate></item><item><title><![CDATA[LINQ Sort array element based on length]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/946684db-8e11-4cbd-b8ef-00e33f630217/linq-sort-array-element-based-on-length.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/946684db-8e11-4cbd-b8ef-00e33f630217/linq-sort-array-element-based-on-length.aspx]]></link><description><![CDATA[How you can sort array element based on their length.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/946684db-8e11-4cbd-b8ef-00e33f630217/linq-sort-array-element-based-on-length.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 03 Apr 2011 11:20:23 GMT</pubDate></item><item><title><![CDATA[Get Files List using LINQ]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/d347ac82-5c39-4001-822b-b8c03b5a7444/get-files-list-using-linq.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/d347ac82-5c39-4001-822b-b8c03b5a7444/get-files-list-using-linq.aspx]]></link><description><![CDATA[How to get a file list using LINQ&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/d347ac82-5c39-4001-822b-b8c03b5a7444/get-files-list-using-linq.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 24 Mar 2011 09:10:21 GMT</pubDate></item><item><title><![CDATA[LINQ Count Operator]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/7593c035-8296-49cc-9564-d74170fe5272/linq-count-operator.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/7593c035-8296-49cc-9564-d74170fe5272/linq-count-operator.aspx]]></link><description><![CDATA[Explains the usage of the Count operator from LINQ.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/7593c035-8296-49cc-9564-d74170fe5272/linq-count-operator.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 24 Mar 2011 09:11:04 GMT</pubDate></item><item><title><![CDATA[LINQ - Different ways to Query an Arraylist]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/268d6fde-bcc3-4d71-849c-649aa8124afd/linq--different-ways-to-query-an-arraylist.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/268d6fde-bcc3-4d71-849c-649aa8124afd/linq--different-ways-to-query-an-arraylist.aspx]]></link><description><![CDATA[An Arraylist is a non-generic collection object that does not implement IEnumerable<T> interface. To query such an object , you have two ways.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/268d6fde-bcc3-4d71-849c-649aa8124afd/linq--different-ways-to-query-an-arraylist.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 14 Mar 2011 22:04:15 GMT</pubDate></item><item><title><![CDATA[LINQ Aggregate operator to perform an accumulator operation on items of a sequence]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f0701e81-7fab-4121-80be-9995e62bf88f/linq-aggregate-operator-to-perform-an-accumulator-operation-on-items-of-a-sequence.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f0701e81-7fab-4121-80be-9995e62bf88f/linq-aggregate-operator-to-perform-an-accumulator-operation-on-items-of-a-sequence.aspx]]></link><description><![CDATA[This article illustrates how to use the Aggregate<T> operator from LINQ to perform an accumulator operation on all items of a sequence.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/f0701e81-7fab-4121-80be-9995e62bf88f/linq-aggregate-operator-to-perform-an-accumulator-operation-on-items-of-a-sequence.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 28 Feb 2011 09:02:00 GMT</pubDate></item><item><title><![CDATA[LINQ Handle null in query]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f608b7c5-4117-439a-bb55-bd6d17f1945b/linq-handle-null-in-query.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/f608b7c5-4117-439a-bb55-bd6d17f1945b/linq-handle-null-in-query.aspx]]></link><description><![CDATA[You can use ternary operator to handle null values in LINQ query. See the following example.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/f608b7c5-4117-439a-bb55-bd6d17f1945b/linq-handle-null-in-query.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 29 Jan 2011 13:34:19 GMT</pubDate></item><item><title><![CDATA[LINQ Entity Framework Ordered Sequences for Skip Operator]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/721eb791-c3ef-4fd4-bcf4-0c8944f3d99d/linq-entity-framework-ordered-sequences-for-skip-operator.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/721eb791-c3ef-4fd4-bcf4-0c8944f3d99d/linq-entity-framework-ordered-sequences-for-skip-operator.aspx]]></link><description><![CDATA[In spite of supporting a similar set of operations, LINQ to objects and LINQ to Entities have some subtle differences. The Skip operator is one of them. This FAQ tried to explain the importance of an ordered sequence in order to apply the Skip operator.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/721eb791-c3ef-4fd4-bcf4-0c8944f3d99d/linq-entity-framework-ordered-sequences-for-skip-operator.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 17 Jan 2011 09:35:27 GMT</pubDate></item><item><title><![CDATA[Using LINQ to find the number of times a given word occurs in a text/paragraph]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/b6e3fc8b-2de3-4f1d-bf01-f99f48b434ab/using-linq-to-find-the-number-of-times-a-given-word-occurs-in-a-textparagraph.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/b6e3fc8b-2de3-4f1d-bf01-f99f48b434ab/using-linq-to-find-the-number-of-times-a-given-word-occurs-in-a-textparagraph.aspx]]></link><description><![CDATA[This explains a way to find out the number of times a given word occurs in a text/paragraph.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/b6e3fc8b-2de3-4f1d-bf01-f99f48b434ab/using-linq-to-find-the-number-of-times-a-given-word-occurs-in-a-textparagraph.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 07 Jan 2011 11:10:30 GMT</pubDate></item><item><title><![CDATA[LINQ Getting the longest word in text content]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/7e31c9b6-b444-4814-a04a-d24ad6d0fd8e/linq-getting-the-longest-word-in-text-content.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/7e31c9b6-b444-4814-a04a-d24ad6d0fd8e/linq-getting-the-longest-word-in-text-content.aspx]]></link><description><![CDATA[This explains a way to search for the longest word in a text/paragraph using LINQ.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/7e31c9b6-b444-4814-a04a-d24ad6d0fd8e/linq-getting-the-longest-word-in-text-content.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 07 Jan 2011 11:11:03 GMT</pubDate></item><item><title><![CDATA[Get result in comma seperated value (CSV) using LINQ]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/9f86fb13-8578-4361-afce-255cd3c3fd3c/get-result-in-comma-seperated-value-csv-using-linq.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/9f86fb13-8578-4361-afce-255cd3c3fd3c/get-result-in-comma-seperated-value-csv-using-linq.aspx]]></link><description><![CDATA[Get the resultset data from datatable or any other object converted into comma seperated value.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/9f86fb13-8578-4361-afce-255cd3c3fd3c/get-result-in-comma-seperated-value-csv-using-linq.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 05 Jan 2011 04:39:25 GMT</pubDate></item><item><title><![CDATA[String to Hex and Hex to String via LINQ]]></title><guid isPermaLink="true"><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/39a64226-83eb-4bfa-b069-c749e9532935/string-to-hex-and-hex-to-string-via-linq.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/sample-code/LINQ/39a64226-83eb-4bfa-b069-c749e9532935/string-to-hex-and-hex-to-string-via-linq.aspx]]></link><description><![CDATA[Here are a couple of cool "LINQ-ified" ways to convert a string to a hexadecimal string, and convert the hexadecimal string back to the original string. The sample assumes you want to encode some querystring items.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/sample-code/LINQ/39a64226-83eb-4bfa-b069-c749e9532935/string-to-hex-and-hex-to-string-via-linq.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 03 Jan 2011 10:52:42 GMT</pubDate></item></channel></rss>