<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>w3mentor &#187; OrderBy</title>
	<atom:link href="http://w3mentor.com/learn/category/asp-dot-net-c-sharp/c-asp-net-linq/orderby/feed/" rel="self" type="application/rss+xml" />
	<link>http://w3mentor.com</link>
	<description>Learning web technologies simplified!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:16:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Sort on multiple criteria with orderby using LINQ C#</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/sort-on-multiple-criteria-with-orderby-using-linq-c/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/sort-on-multiple-criteria-with-orderby-using-linq-c/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:53:50 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[OrderBy]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10287</guid>
		<description><![CDATA[using System; using System.Linq; class Account &#123; public string FirstName &#123; get; private set; &#125; public string LastName &#123; get; private set; &#125; public double Balance &#123; get; private set; &#125; public string AccountNumber &#123; get; private set; &#125; public &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/sort-on-multiple-criteria-with-orderby-using-linq-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/sort-on-multiple-criteria-with-orderby-using-linq-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use orderby to retrieve the values in an int array in ascending order in LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/use-orderby-to-retrieve-the-values-in-an-int-array-in-ascending-order-in-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/use-orderby-to-retrieve-the-values-in-an-int-array-in-ascending-order-in-linq/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:39:27 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[OrderBy]]></category>
		<category><![CDATA[arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10285</guid>
		<description><![CDATA[using System; using System.Linq; class OrderbyDemo &#123; static void Main&#40;&#41; &#123; int&#91;&#93; nums = &#123; 10, -19, 4, 7, 2, -5, 0 &#125;; // Create a query that obtains the values in sorted order. var posNums = from n in &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/use-orderby-to-retrieve-the-values-in-an-int-array-in-ascending-order-in-linq/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/use-orderby-to-retrieve-the-values-in-an-int-array-in-ascending-order-in-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OrderBy using CurrentCultureIgnoreCase in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-using-currentcultureignorecase-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-using-currentcultureignorecase-in-c-linq/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:56:00 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[OrderBy]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10233</guid>
		<description><![CDATA[var query14 = ProductList.Where&#40;p = &#62; p.Category.CategoryName == “Beverages”&#41; .OrderBy&#40;p = &#62; p.ProductName, StringComparer.CurrentCultureIgnoreCase&#41;; &#160; foreach &#40;var p in query14&#41; sbResult.Append&#40;String.Format&#40;“ProductID = &#123;0&#125;, UnitPrice = &#123;1:c&#125;, “ &#38; “Name = &#123;2&#125;\r\n”, p.ProductID, p.UnitPrice, p.ProductName&#41;&#41;;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-using-currentcultureignorecase-in-c-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ThenBy and ThenByDescending example in LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-example-in-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-example-in-linq/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:54:27 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[OrderBy]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10230</guid>
		<description><![CDATA[var query13 = ProductList.OrderBy&#40;p = &#62; p.CategoryID&#41; .ThenByDescending&#40;p = &#62; p.UnitPrice&#41; .ThenBy&#40;p = &#62; p.ProductName&#41;; &#160; query13 = from p in ProductList orderby p.CategoryID, p.UnitPrice descending, p.ProductName select p; &#160; foreach &#40;var p in query13&#41; sbResult.Append&#40;String.Format&#40;“CategoryID = &#123;0&#125;, UnitPrice = &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-example-in-linq/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/orderby/orderby-example-in-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: w3mentor.com @ 2012-02-07 23:40:05 -->
