<?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; Where</title>
	<atom:link href="http://w3mentor.com/learn/category/asp-dot-net-c-sharp/c-asp-net-linq/where/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>LINQ where clause with substrings</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/linq-where-clause-with-substrings/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/linq-where-clause-with-substrings/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:35:46 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Where]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10282</guid>
		<description><![CDATA[using System; using System.Linq; class WhereDemo2 &#123; static void Main&#40;&#41; &#123; string&#91;&#93; strs = &#123; &#34;.com&#34;, &#34;.net&#34;, &#34;someNameA.com&#34;, &#34;someNameB.net&#34;, &#34;test&#34;, &#34;.network&#34;, &#34;someNameC.net&#34;, &#34;someNameD.com&#34; &#125;; // Create a query that obtains Internet addresses that // end with .net. var netAddrs = &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/linq-where-clause-with-substrings/">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/where/linq-where-clause-with-substrings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use multiple where clauses in LINQ C#</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/use-multiple-where-clauses-in-linq-c/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/use-multiple-where-clauses-in-linq-c/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:34:01 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Where]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10280</guid>
		<description><![CDATA[using System; using System.Linq; class TwoWheres &#123; static void Main&#40;&#41; &#123; int&#91;&#93; nums = &#123; 1, -2, 3, -3, 0, -8, 12, 19, 6, 9, 10 &#125;; // Create a query that obtains positive values less than 10. var posNums &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/use-multiple-where-clauses-in-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/where/use-multiple-where-clauses-in-linq-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Method Call with Index Criterion in C# LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/where-method-call-with-index-criterion-in-c-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/where-method-call-with-index-criterion-in-c-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:01:13 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Where]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10203</guid>
		<description><![CDATA[public List&#60;Customer&#62; CustomerList; StringBuilder sbResult = new StringBuilder&#40;&#41;; var query3 = CustomerList.Where&#40;&#40;c, index&#41; =&#62; c.Country == &#34;USA&#34; &#38;&#38; index &#62; 70&#41;; &#160; // Apply IndexOf() method, which achieves the same result and supports query expressions query3 = CustomerList.Where&#40;c =&#62; c.Country &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/where-method-call-with-index-criterion-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/where/where-method-call-with-index-criterion-in-c-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compound Where Expression in LINQ</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/compound-where-expression-in-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/compound-where-expression-in-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:59:36 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Where]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10201</guid>
		<description><![CDATA[public List&#60;Customer&#62; CustomerList; StringBuilder sbResult = new StringBuilder&#40;&#41;; var query2 = CustomerList.Where&#40;c =&#62; c.Country == &#34;USA&#34; &#38;&#38; c.Orders.Any&#40;&#41;&#41;; query2 = from c in CustomerList where c.Country == &#34;USA&#34; &#38;&#38; c.Orders.Any&#40;&#41; select c; &#160; foreach &#40;var c in query2&#41; &#123; sbResult.Append&#40;String.Format&#40;&#34;CustomerID &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/compound-where-expression-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/where/compound-where-expression-in-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Where expression example in Linq</title>
		<link>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/simple-where-expression-example-in-linq/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/simple-where-expression-example-in-linq/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:52:54 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Where]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=10198</guid>
		<description><![CDATA[var query1 = CustomerList.Where&#40;c = &#62; c.Country == &#34;USA&#34;&#41;; //alternate form query1 = from c in CustomerList where c.Country == &#34;USA&#34; select c; &#160; foreach &#40;var c in query1&#41; sbResult.Append&#40;String.Format&#40;&#34;CustomerID = {0}, CompanyName = {1}, &#34; + &#34;Country = {2}\r\n&#34;, &#8230; <a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/where/simple-where-expression-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/where/simple-where-expression-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:36:15 -->
