<?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; Select</title>
	<atom:link href="http://w3mentor.com/learn/category/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/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>Query processes using LINQ to find windows services</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:34:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11897</guid>
		<description><![CDATA[IEnumerable&#60;Process&#62; pList = from proc in Process.GetProcesses&#40;&#41; where String.Equals&#40;proc.ProcessName, &#34;svchost&#34;&#41; select proc;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple LINQ to Objects example</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:30:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11893</guid>
		<description><![CDATA[List&#60;Employee&#62; employees = new List&#60;Employee&#62;&#40;&#41; &#123; new Employee &#123; ID=1, Name=&#34;Ravi&#34;, JoinDate=new DateTime&#40;2002, 1, 15&#41; &#125;, new Employee &#123; ID=2, Name=&#34;Raja&#34;, JoinDate=new DateTime&#40;2002, 3, 17 &#125;, new Employee &#123; ID=3, Name=&#34;Mani&#34;, JoinDate=new DateTime&#40;2007, 2, 11&#41; &#125; &#125;; &#160; IEnumerable&#60;Employee&#62; query &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/">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/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query public types in an assembly using LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:28:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11891</guid>
		<description><![CDATA[IEnumerable&#60;string&#62; publicTypes = from t in Assembly.GetExecutingAssembly&#40;&#41;.GetTypes&#40;&#41; where t.IsPublic select t.FullName; &#160; foreach &#40;string name in publicTypes&#41; &#123; Console.WriteLine&#40;name&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SelectMany Translation for an Equi-join Expression in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/selectmany-translation-for-an-equi-join-expression-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/selectmany-translation-for-an-equi-join-expression-in-c-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:09:31 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Select]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10214</guid>
		<description><![CDATA[var query7 = from c in CustomerList from o in OrderList where c.Country == &#34;USA&#34; &#38;&#38; o.CustomerID == c.CustomerID select new &#123; o, c &#125;; &#160; //Translates to: query7 = from c in CustomerList.SelectMany&#40;o =&#62; OrderList, &#40;c, o&#41; =&#62; new &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/selectmany-translation-for-an-equi-join-expression-in-c-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/select-c-asp-net-linq-asp-dot-net-c-sharp/selectmany-translation-for-an-equi-join-expression-in-c-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple SelectMany Example with Associated Collection in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-selectmany-example-with-associated-collection-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-selectmany-example-with-associated-collection-in-c-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:05:35 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Select]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10210</guid>
		<description><![CDATA[The SelectMany operator implements cross and outer joins, and flattens sequences into elements that resemble rows of relational views based on joins.SelectMany returns from the source object a many &#8211; to - one sequence having the set of properties specified &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-selectmany-example-with-associated-collection-in-c-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/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-selectmany-example-with-associated-collection-in-c-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Select Projection with Index Values in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/multiple-select-projection-with-index-values-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/multiple-select-projection-with-index-values-in-c-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:04:25 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Select]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10208</guid>
		<description><![CDATA[public List&#60;Customer&#62; CustomerList; StringBuilder sbResult = new StringBuilder&#40;&#41;; var query5 = CustomerList.Select&#40;&#40;cust, index&#41; =&#62; new &#123;cust, index&#125;&#41; .Where&#40;c =&#62; c.cust.Country == &#34;USA&#34; &#38;&#38; c.index &#62; 70&#41; .Select&#40;c =&#62; new &#123; c.cust.CustomerID, c.cust.CompanyName, c.index &#125;&#41;; // Demonstrates use of the Let &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/multiple-select-projection-with-index-values-in-c-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/select-c-asp-net-linq-asp-dot-net-c-sharp/multiple-select-projection-with-index-values-in-c-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Select Projection in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-select-projection-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-select-projection-in-c-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:02:56 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Select]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10206</guid>
		<description><![CDATA[public List&#60;Customer&#62; CustomerList; StringBuilder sbResult = new StringBuilder&#40;&#41;; var query4 = CustomerList.Where&#40;c =&#62; c.Country == &#34;USA&#34;&#41; .Select&#40;c =&#62; new &#123; c.CustomerID, c.CompanyName, c.Country &#125;&#41;; query4 = from c in CustomerList where c.Country == &#34;USA&#34; select new &#123;c.CustomerID, c.CompanyName, c.Country&#125;; &#160; &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-select-projection-in-c-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/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-select-projection-in-c-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-08 00:39:30 -->
