<?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>ADO.NET, LINQ, DataSet and other fun .NET technology</title><link>http://blogs.msdn.com/erickt/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Download hotfixes</title><link>http://blogs.msdn.com/erickt/archive/2008/07/03/download-hotfixes.aspx</link><pubDate>Fri, 04 Jul 2008 00:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8685871</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/erickt/comments/8685871.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=8685871</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=8685871</wfw:comment><description>Sometimes you run into a bug in DataSet, or some other product. At this point, you have a couple of choices. You can work around the bug, or you can call CSS/PSS. Most people take the former route unless they can't figure out a workaround. When you call...(&lt;a href="http://blogs.msdn.com/erickt/archive/2008/07/03/download-hotfixes.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8685871" width="1" height="1"&gt;</description></item><item><title>Tech Ed</title><link>http://blogs.msdn.com/erickt/archive/2008/05/30/tech-ed.aspx</link><pubDate>Fri, 30 May 2008 19:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8563646</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/erickt/comments/8563646.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=8563646</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=8563646</wfw:comment><description>I'm currently down in sunny Orlando, getting ready for Tech Ed (or is it TechEd? That dot between letters is a very odd thing). I'm going to be presenting on LINQ to DataSet, and Understanding the Entity Framework. As usual, I have far too much material...(&lt;a href="http://blogs.msdn.com/erickt/archive/2008/05/30/tech-ed.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8563646" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Entty+Framework/default.aspx">Entty Framework</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Conferences/default.aspx">Conferences</category></item><item><title>LINQ to DataSet - LinqDataView and indexes</title><link>http://blogs.msdn.com/erickt/archive/2008/05/19/linq-to-dataset-linqdataview-and-indexes.aspx</link><pubDate>Mon, 19 May 2008 22:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8519560</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/erickt/comments/8519560.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=8519560</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=8519560</wfw:comment><description>Index usage One of the features of the DataView that often gets overlooked is its ability to very quickly find a DataRow (or multiple DataRows) by an index value. The index is built on the sort criteria, so if you sort based on the last name column, the...(&lt;a href="http://blogs.msdn.com/erickt/archive/2008/05/19/linq-to-dataset-linqdataview-and-indexes.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8519560" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Data+Binding/default.aspx">Data Binding</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category></item><item><title>DataSets and nullable types</title><link>http://blogs.msdn.com/erickt/archive/2008/05/15/datasets-and-nullable-types.aspx</link><pubDate>Fri, 16 May 2008 05:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8510655</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>9</slash:comments><comments>http://blogs.msdn.com/erickt/comments/8510655.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=8510655</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=8510655</wfw:comment><description>Let's say you want to have a DataSet with an Integer column, and this column can have no values, which for argument's sake we'll call NULL values (there is a whole argument about NULL really means, but we'll punt on that). The DataSet has been around...(&lt;a href="http://blogs.msdn.com/erickt/archive/2008/05/15/datasets-and-nullable-types.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8510655" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category></item><item><title>How'ya doing, where'ya been?</title><link>http://blogs.msdn.com/erickt/archive/2008/05/15/how-ya-doing-where-ya-been.aspx</link><pubDate>Fri, 16 May 2008 03:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8510327</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/erickt/comments/8510327.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=8510327</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=8510327</wfw:comment><description>It's been a while - but don't worry, I didn't drop off the face of the planet, or get eaten by huge worms. In the time since my last post, I've taken on some new responsibilities, namely a number of XML technologies, including those that are shipping...(&lt;a href="http://blogs.msdn.com/erickt/archive/2008/05/15/how-ya-doing-where-ya-been.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8510327" width="1" height="1"&gt;</description></item><item><title>EnumerableRowCollection Type</title><link>http://blogs.msdn.com/erickt/archive/2007/11/06/what-is-this-enumerablerowcollection-type.aspx</link><pubDate>Wed, 07 Nov 2007 04:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5948854</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/erickt/comments/5948854.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=5948854</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=5948854</wfw:comment><description>If you've been playing with LINQ to DataSet, you may have noticed the EnumerableRowCollection type. For example, if you have a query like the following, the type of query is EnumerableRowCollection. var query = from row in ds.Tables[0].AsEnumerable()...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/11/06/what-is-this-enumerablerowcollection-type.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5948854" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category></item><item><title>LINQ to DataSet Data Binding – LinqDataView Restriction Joins</title><link>http://blogs.msdn.com/erickt/archive/2007/10/24/linq-to-dataset-data-binding-linqdataview-restriction-joins.aspx</link><pubDate>Wed, 24 Oct 2007 21:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5655492</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/erickt/comments/5655492.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=5655492</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=5655492</wfw:comment><description>LINQ To DataSet Data Binding – LinqDataView restriction joins In previous episodes In the last post I made on LINQ To DataSet Binding, I talked about how to create a LinqDataView. I’m going to spend some time today talking about some of the interesting...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/10/24/linq-to-dataset-data-binding-linqdataview-restriction-joins.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5655492" width="1" height="1"&gt;</description><enclosure url="http://blogs.msdn.com/erickt/attachment/5655492.ashx" length="335681" type="application/x-zip-compressed" /><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Samples/default.aspx">Samples</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Data+Binding/default.aspx">Data Binding</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category></item><item><title>LINQ to DataSet Data Binding – Introducing LinqDataView </title><link>http://blogs.msdn.com/erickt/archive/2007/10/05/linq-to-dataset-data-binding-introducing-linqdataview.aspx</link><pubDate>Fri, 05 Oct 2007 23:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5300017</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/erickt/comments/5300017.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=5300017</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=5300017</wfw:comment><description>It's long overdue, but I finally was able to finish a few more posts on this series. Let me know if you find it helpful, and what you would like to see more of! Why DataView? As mentioned in this previous post , there are numerous options for data binding...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/10/05/linq-to-dataset-data-binding-introducing-linqdataview.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5300017" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Samples/default.aspx">Samples</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Data+Binding/default.aspx">Data Binding</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category></item><item><title>Want to see my source?</title><link>http://blogs.msdn.com/erickt/archive/2007/10/04/want-to-see-my-source.aspx</link><pubDate>Thu, 04 Oct 2007 23:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5278461</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/erickt/comments/5278461.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=5278461</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=5278461</wfw:comment><description>Have you ever wondered exactly what is going on inside of ADO.NET? Is Reflector the first thing you install after Visual Studio? Then you'll be interested in that fact that ScottGu just announced that the source for the .NET framework is going to be released....(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/10/04/want-to-see-my-source.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5278461" width="1" height="1"&gt;</description></item><item><title>PASS 2007 - Happening now in Denver</title><link>http://blogs.msdn.com/erickt/archive/2007/09/18/pass-2007-happening-now-in-denver.aspx</link><pubDate>Tue, 18 Sep 2007 23:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4985931</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/erickt/comments/4985931.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=4985931</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=4985931</wfw:comment><description>I'm currently in Denver for the SQL Server PASS conference. I'll be giving a talk about the Entity Framework for DBAs tomorrow (Wednesday) afternoon. If you're there, please come by. Even if you can't make my session, stop by and say hello! Thanks, Eric...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/09/18/pass-2007-happening-now-in-denver.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4985931" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+Entities/default.aspx">LINQ to Entities</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Database/default.aspx">Database</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Entty+Framework/default.aspx">Entty Framework</category></item><item><title>LINQ to DataSet – Data Binding</title><link>http://blogs.msdn.com/erickt/archive/2007/08/24/linq-to-dataset-data-binding.aspx</link><pubDate>Fri, 24 Aug 2007 22:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4547513</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>8</slash:comments><comments>http://blogs.msdn.com/erickt/comments/4547513.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=4547513</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=4547513</wfw:comment><description>With the introduction of LINQ to DataSet there finally exists a full featured query language for the DataSet. Now your ability to query your data is limited only by CLR, which is no small thing! For an introduction on LINQ to DataSet, please see this...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/08/24/linq-to-dataset-data-binding.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4547513" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ/default.aspx">LINQ</category><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category></item><item><title>Entity Framework starting points</title><link>http://blogs.msdn.com/erickt/archive/2007/07/31/entity-framework-starting-points.aspx</link><pubDate>Wed, 01 Aug 2007 02:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4156025</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/erickt/comments/4156025.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=4156025</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=4156025</wfw:comment><description>I was recently asked what a high level list of good starting points for the Entity Framework is. This is a tough question as there are a lot of areas to cover. I've put together a list that I think makes sense from my perspective, which is tilted towards...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/07/31/entity-framework-starting-points.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4156025" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+Entities/default.aspx">LINQ to Entities</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Database/default.aspx">Database</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Entty+Framework/default.aspx">Entty Framework</category></item><item><title>Entity Framework for DBAs</title><link>http://blogs.msdn.com/erickt/archive/2007/05/03/entity-framework-for-dbas.aspx</link><pubDate>Fri, 04 May 2007 04:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2402983</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>7</slash:comments><comments>http://blogs.msdn.com/erickt/comments/2402983.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=2402983</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=2402983</wfw:comment><description>There are a host of new technologies coming out, and among them are some ORM type of systems. I want to spend some time exploring how a DBA will work with these, and if they are good or bad. Given that I am on the Entity Framework team, that is the place...(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/05/03/entity-framework-for-dbas.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2402983" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/Database/default.aspx">Database</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Entty+Framework/default.aspx">Entty Framework</category></item><item><title>LINQ to DataSet WebCast (May 2, 2007) - Samples and slides</title><link>http://blogs.msdn.com/erickt/archive/2007/05/02/linq-to-dataset-webcast-may-2-2007-samples-and-slides.aspx</link><pubDate>Wed, 02 May 2007 21:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2378932</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/erickt/comments/2378932.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=2378932</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=2378932</wfw:comment><description>This morning I performed a MSDN WebCast on LINQ to DataSet. I hope it was useful for people, and that I was able to answer all the questions sufficiently. If you missed the live show, you can always catch the "TiVo" version (i.e., on demand webcast)....(&lt;a href="http://blogs.msdn.com/erickt/archive/2007/05/02/linq-to-dataset-webcast-may-2-2007-samples-and-slides.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2378932" width="1" height="1"&gt;</description><enclosure url="http://blogs.msdn.com/erickt/attachment/2378932.ashx" length="1922068" type="application/x-zip-compressed" /><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+DataSet/default.aspx">LINQ to DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Samples/default.aspx">Samples</category><category domain="http://blogs.msdn.com/erickt/archive/tags/DataSet/default.aspx">DataSet</category><category domain="http://blogs.msdn.com/erickt/archive/tags/Conferences/default.aspx">Conferences</category></item><item><title>Beta 1 Orcas Samples - LINQ to Entities</title><link>http://blogs.msdn.com/erickt/archive/2007/05/01/beta-1-orcas-samples-linq-to-entities.aspx</link><pubDate>Wed, 02 May 2007 06:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2367610</guid><dc:creator>Erick Thompson</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/erickt/comments/2367610.aspx</comments><wfw:commentRss>http://blogs.msdn.com/erickt/commentrss.aspx?PostID=2367610</wfw:commentRss><wfw:comment>http://blogs.msdn.com/erickt/rsscomments.aspx?PostID=2367610</wfw:comment><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;With all the sample confusion during the March CTP, you will be pleased to know that the sample story for Beta 1 is much more smooth. You can find the complete working set of samples at the following URL. &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;A class="" href="http://msdn2.microsoft.com/en-us/bb330936.aspx" mce_href="http://msdn2.microsoft.com/en-us/bb330936.aspx"&gt;http://msdn2.microsoft.com/en-us/bb330936.aspx&lt;o:p&gt;&lt;/o:p&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;This sample set includes the full suite of LINQ samples, including LINQ to Entities. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;As you may have heard, the Entity Framework will not be shipping alongside of Orcas. As such, when Beta 2 is released the LINQ to Entities samples will be found along with the rest of the Entity Framework, in a distinct CTP. Keep your ears open for announcements regarding this!&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Erick&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2367610" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/erickt/archive/tags/Samples/default.aspx">Samples</category><category domain="http://blogs.msdn.com/erickt/archive/tags/LINQ+to+Entities/default.aspx">LINQ to Entities</category></item></channel></rss>