<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: LINQ &#8211; Cross Data Context JOIN, A Solution</title>
	<atom:link href="http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/</link>
	<description>Taking over the world, one byte at a time.</description>
	<lastBuildDate>Tue, 30 Mar 2010 13:10:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Stuart</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-3852</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Thu, 04 Feb 2010 15:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-3852</guid>
		<description>Thanks for this post. Very concise, easy to understand. Just what i needed!</description>
		<content:encoded><![CDATA[<p>Thanks for this post. Very concise, easy to understand. Just what i needed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashvini</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-3372</link>
		<dc:creator>Ashvini</dc:creator>
		<pubDate>Wed, 28 Oct 2009 09:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-3372</guid>
		<description>Thanks. It was really helpful and easy to understand.</description>
		<content:encoded><![CDATA[<p>Thanks. It was really helpful and easy to understand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yam</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-3356</link>
		<dc:creator>Yam</dc:creator>
		<pubDate>Thu, 13 Aug 2009 15:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-3356</guid>
		<description>Thanks for the trick, very usefull</description>
		<content:encoded><![CDATA[<p>Thanks for the trick, very usefull</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrnon</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-3325</link>
		<dc:creator>mrnon</dc:creator>
		<pubDate>Sat, 11 Jul 2009 13:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-3325</guid>
		<description>You saved me! Thanks!</description>
		<content:encoded><![CDATA[<p>You saved me! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aliya and Arpan</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-3188</link>
		<dc:creator>Aliya and Arpan</dc:creator>
		<pubDate>Wed, 17 Jun 2009 19:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-3188</guid>
		<description>THANKS MAN!</description>
		<content:encoded><![CDATA[<p>THANKS MAN!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Heine</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-2843</link>
		<dc:creator>Jason Heine</dc:creator>
		<pubDate>Tue, 26 May 2009 13:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-2843</guid>
		<description>Yes, doing it like this has some drawbacks such as the one you explained. The main purpose was to show that if you needed to do a join on 2 seperate data contexts, it could be done. I have updated my post to include this information as well as a screen shot to show SQL profiler during the execution. Thanks for the feedback!</description>
		<content:encoded><![CDATA[<p>Yes, doing it like this has some drawbacks such as the one you explained. The main purpose was to show that if you needed to do a join on 2 seperate data contexts, it could be done. I have updated my post to include this information as well as a screen shot to show SQL profiler during the execution. Thanks for the feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Slava B.</title>
		<link>http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/comment-page-1/#comment-2824</link>
		<dc:creator>Slava B.</dc:creator>
		<pubDate>Mon, 25 May 2009 21:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonheine.com/beyond/index.php/linq-cross-data-context-a-solution/#comment-2824</guid>
		<description>Thank you, it&#039;s intresting method. But I have one notice. 
In 

var query = from a in GetTableA()    
                        join b in GetTableB()
                        on a.PrimaryKeyA equals b.TableAJoinValue
                        select b;

Each method GetTable*() executes SQL query. It always happens when you cast IQueryable to IEnumerable. Consequently you join two arrays which filter by &quot;a.PrimaryKeyA == b.TableAJoinValue&quot;.</description>
		<content:encoded><![CDATA[<p>Thank you, it&#8217;s intresting method. But I have one notice.<br />
In </p>
<p>var query = from a in GetTableA()<br />
                        join b in GetTableB()<br />
                        on a.PrimaryKeyA equals b.TableAJoinValue<br />
                        select b;</p>
<p>Each method GetTable*() executes SQL query. It always happens when you cast IQueryable to IEnumerable. Consequently you join two arrays which filter by &#8220;a.PrimaryKeyA == b.TableAJoinValue&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
