<?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>Entity Client</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx</link><description>With the next release of the .NET Framework, ADO.NET will introduce a new member of the family of data providers – EntityClient . The mission of EntityClient is to provide a gateway for entity-level queries . Through EntityClient one queries against a</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Entity SQL &amp; the EntityClient Provider in ADO.NET vNext</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1679929</link><pubDate>Thu, 15 Feb 2007 04:09:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1679929</guid><dc:creator>John Papa [MVP C#]</dc:creator><description>&lt;p&gt;If you watch the ADO.NET team&amp;amp;#8217;s blog then you may have seen the post from today from Zlatko Michailov&lt;/p&gt;
</description></item><item><title>re: Entity Client</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1680338</link><pubDate>Thu, 15 Feb 2007 04:36:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1680338</guid><dc:creator>Troy Magennis</dc:creator><description>&lt;p&gt;Another &amp;quot;SQL like, string based language syntax&amp;quot; seems to be a step backwards in the day and age of LINQ and Expression Trees. Wouldn't a set of LINQ providers formulating queries based upon expression trees solved the same problem and fitted better with the whole LINQ Data != Objects story?&lt;/p&gt;
&lt;p&gt;What is the advantage of the &amp;quot;Command Tree&amp;quot; rather than and the standard &amp;quot;Expression Tree&amp;quot;?&lt;/p&gt;
</description></item><item><title>Entity SQL - Another string based data-access language</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1680520</link><pubDate>Thu, 15 Feb 2007 04:49:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1680520</guid><dc:creator>LINQed IN - Troy Magennis' View on .NET, C# and Software Development</dc:creator><description>&lt;p&gt;This has been bugging me for a while, but I must now admit how disappointed I am that the ADO.Net team...&lt;/p&gt;
</description></item><item><title>Entity SQL - Another string based data-access language</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1681056</link><pubDate>Thu, 15 Feb 2007 07:51:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1681056</guid><dc:creator>LINQed IN - Troy Magennis' View on .NET, C# and Software Development</dc:creator><description>&lt;p&gt;This is a polarizing post- I really want these issues discussed and debated. I'm interested is anyone...&lt;/p&gt;
</description></item><item><title>re: Entity Client</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1681958</link><pubDate>Thu, 15 Feb 2007 11:33:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1681958</guid><dc:creator>Frans Bouma</dc:creator><description>&lt;p&gt;&amp;quot;Entity SQL will not support any DML constructs – INSERT, UPDATE, or DELETE in the Orcas release. Data modification could still be done through ObjectContext, or through the native SQL of the target store. &amp;quot;&lt;/p&gt;
&lt;p&gt;I find this a bit strange. Entities of the Entity framework mapped as C# classes can be updated/deleted etc. using Linq/objectcontext, but not through eSql ? Isn't it so, that the expression tree resulting from the objectcontext actions is what you should use for eSQL statements? &lt;/p&gt;
</description></item><item><title>re: Entity Client</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1686026</link><pubDate>Fri, 16 Feb 2007 01:50:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1686026</guid><dc:creator>Zlatko Michailov</dc:creator><description>&lt;p&gt;The requirements for update from object- and entity-level are quite different. Update from object-level (ObjectContext or LINQ) operates over individual object instances. There is a separate command tree for each instance that is being updated. The assumption is: the number of object instances is relatively small compared to the total number of instances in the store. &lt;/p&gt;
&lt;p&gt;Entity SQL, on the other hand, operates over entity sets. There should be a single command tree that updates a relatively large set of instances. So object-level update trees are not applicable. Entity-level updates target rather maintenance than application development. By the time maintenance becomes an issue, entity-level updates should be implemented.&lt;/p&gt;
</description></item><item><title>New and Notable 142</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1705823</link><pubDate>Sun, 18 Feb 2007 19:16:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1705823</guid><dc:creator>Sam Gentile</dc:creator><description>&lt;p&gt;Data/ADO.NET Orcas Two from the ADO.NET team: Entity Client and Nulls - LINQ to DataSets Part 3 Software&lt;/p&gt;
</description></item><item><title>Insert, Update, Delete support in Entity SQL (ADO.Net Entity Framework)</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#1842980</link><pubDate>Fri, 09 Mar 2007 12:53:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1842980</guid><dc:creator>Guy Burstein's Blog</dc:creator><description>&lt;p&gt;According to the ADO.Net Team here and here , there will be no support of DML operations in Entity SQL&lt;/p&gt;
</description></item><item><title>Entity Framework starting points</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#4210762</link><pubDate>Fri, 03 Aug 2007 23:18:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4210762</guid><dc:creator>ADO.NET, LINQ, DataSet and other fun .NET technology</dc:creator><description>&lt;p&gt;I was recently asked what a high level list of good starting points for the Entity Framework is. This&lt;/p&gt;
</description></item><item><title>ADO.NET team blog : Entity Client</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#8577104</link><pubDate>Fri, 06 Jun 2008 09:51:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8577104</guid><dc:creator>Weddings</dc:creator><description>&lt;p&gt;With the next release of the .NET Framework, ADO.NET will introduce a new member of the family of data providers – EntityClient . The mission of EntityClient is to provide a gateway for entity-level queries . Through EntityClient one queries against &lt;/p&gt;
</description></item><item><title>ADO.NET Entity Framework: Algunos detalles (II)!</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#8942306</link><pubDate>Thu, 11 Sep 2008 01:57:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8942306</guid><dc:creator>Blog del CIIN</dc:creator><description>&lt;p&gt;Siguiendo con las pruebas de ADO.NET Entity Framework (ADO.NET EF) comenzadas en este post , en esta&lt;/p&gt;
</description></item><item><title>New and Notable 142</title><link>http://blogs.msdn.com/adonet/archive/2007/02/14/entity-client.aspx#9170337</link><pubDate>Wed, 03 Dec 2008 18:16:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9170337</guid><dc:creator>Sam Gentile's Blog</dc:creator><description>&lt;p&gt;Data/ADO.NET Orcas Two from the ADO.NET team: Entity Client and Nulls - LINQ to DataSets Part 3 Software Architecture/SOA/CAB Udi answers, Can or should SOA be implemented without Web Services? David Chappell on The Three Faces of SOA Eric Newcomer: WS-*&lt;/p&gt;
</description></item></channel></rss>