<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx</link><description>This is the eleventh in a series of posts on how to build a LINQ IQueryable provider. If you have not read the previous posts you’ll want to do so before proceeding, or at least before proceeding to copy the code into your own project and telling your</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>LINQ: Building an IQueryable provider series</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#9490111</link><pubDate>Thu, 19 Mar 2009 17:55:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9490111</guid><dc:creator>Floating Heart</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/mattwar/pages/linq-links.aspx"&gt;http://blogs.msdn.com/mattwar/pages/linq-links.aspx&lt;/a&gt; Here&amp;amp;#39;s a list of all the posts in the building&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9490111" width="1" height="1"&gt;</description></item><item><title>Building a LINQ IQueryable Provider - Part XII</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#9114777</link><pubDate>Tue, 18 Nov 2008 04:06:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9114777</guid><dc:creator>The Wayward WebLog</dc:creator><description>&lt;p&gt;This is the twelfth in a series of posts on how to build a LINQ IQueryable provider. If you have not&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9114777" width="1" height="1"&gt;</description></item><item><title>re: LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8878904</link><pubDate>Tue, 19 Aug 2008 17:45:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8878904</guid><dc:creator>Mike D</dc:creator><description>&lt;p&gt;+1 For Part XII...&lt;/p&gt;
&lt;p&gt;Cant wait, thanks for a great series.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8878904" width="1" height="1"&gt;</description></item><item><title>re: LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8858644</link><pubDate>Wed, 13 Aug 2008 17:44:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8858644</guid><dc:creator>Gian Maria</dc:creator><description>&lt;p&gt;I've been expecting the continuation of this series of posts, great work.&lt;/p&gt;
&lt;p&gt;alk.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8858644" width="1" height="1"&gt;</description></item><item><title>re: LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8793125</link><pubDate>Thu, 31 Jul 2008 13:12:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8793125</guid><dc:creator>Kelvin</dc:creator><description>&lt;P&gt;There seems to be a bug in the program.. if i do select in a select, it returns an error. For example...&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var query = from c in db.Customers&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;where c.CustomerID ==&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(from o in db.Orders&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; where o.CustomerID == "123"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select o.CustomerID).Single()&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;select new { c.ContactName };&lt;/P&gt;
&lt;P&gt;It seems to crash at comparing a ColumnExpression with a ProjectionExpression.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8793125" width="1" height="1"&gt;</description></item><item><title>This is all Seth Godin's fault</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8785925</link><pubDate>Tue, 29 Jul 2008 01:17:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8785925</guid><dc:creator>Bill Blogs in C#</dc:creator><description>&lt;p&gt;Or, what I think about the Alt.Net Vote of No Confidence on the Entity Framework. Almost a month ago&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8785925" width="1" height="1"&gt;</description></item><item><title>re: LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8734502</link><pubDate>Tue, 15 Jul 2008 21:45:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8734502</guid><dc:creator>Mike D</dc:creator><description>&lt;p&gt;If possible this would make a great Codeplex project, especially if there were a visitor pattern to allow integration with other or/m’s. &lt;/p&gt;
&lt;p&gt;Could this be done?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8734502" width="1" height="1"&gt;</description></item><item><title>Ecriture d'un provider IQueryable</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8732700</link><pubDate>Tue, 15 Jul 2008 09:44:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8732700</guid><dc:creator>Matthieu MEZIL</dc:creator><description>&lt;p&gt;La semaine derni&amp;#232;re, je vous disais que Matt Warren avait repris sa s&amp;#233;rie sur l'&amp;#233;criture d'un provider&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8732700" width="1" height="1"&gt;</description></item><item><title>LINQ: Building an IQueryable Provider - Part XI</title><link>http://blogs.msdn.com/b/mattwar/archive/2008/07/14/linq-building-an-iqueryable-provider-part-xi.aspx#8732302</link><pubDate>Tue, 15 Jul 2008 01:30:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8732302</guid><dc:creator>LINQ in Action roller</dc:creator><description>&lt;p&gt;This is the eleventh in a series of posts on how to build a LINQ IQueryable provider. If you have not&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8732302" width="1" height="1"&gt;</description></item></channel></rss>