<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:gr="http://www.google.com/schemas/reader/atom/" xmlns:idx="urn:atom-extension:indexing" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" idx:index="no" gr:dir="ltr"><!--
Content-type: Preventing XSRF in IE.

--><generator uri="http://www.google.com/reader">Google Reader</generator><id>tag:google.com,2005:reader/user/17507267173923544060/state/com.google/broadcast</id><title>koistya's shared items in Google Reader</title><gr:continuation>CNKe_5eJxKsC</gr:continuation><author><name>koistya</name></author><updated>2011-10-11T20:27:49Z</updated><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/koistya" /><feedburner:info uri="koistya" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>koistya</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gr:crawl-timestamp-msec="1318364869744"><id gr:original-id="91d46819-8472-40ad-a661-2c78acb4018c:10214235">tag:google.com,2005:reader/item/f4942f3951a71b6a</id><title type="html">EF 4.2 Model &amp;amp; Database First Walkthrough</title><published>2011-09-28T14:59:00Z</published><updated>2011-09-28T14:59:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/wK3AsEk3TCc/ef-4-2-model-amp-database-first-walkthrough.aspx" type="text/html" /><summary xml:base="http://blogs.msdn.com/b/adonet/" type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-release-candidate-available.aspx"&gt;Entity Framework 4.2 Release Candidate&lt;/a&gt; is now available and contains a small update to the DbContext API &amp;amp; Code First runtime that were released as part of EF 4.1.&lt;/p&gt;  &lt;p&gt;This post will provide an introduction to Model First and Database First development with the DbContext API, using the Entity Data Model Designer in Visual Studio.&lt;/p&gt;  &lt;p&gt;You will need to have Visual Studio 2010 installed to complete this walkthrough.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;h2&gt;1. Create the Application&lt;/h2&gt;  &lt;p&gt;To keep things simple we’re going to build up a basic console application that uses the DbContext to perform data access:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Open Visual Studio 2010 &lt;/li&gt;    &lt;li&gt;File -&amp;gt; New -&amp;gt; Project… &lt;/li&gt;    &lt;li&gt;Select “Windows” from the left menu and “Console Application” &lt;/li&gt;    &lt;li&gt;Enter “ModelFirstSample” as the name &lt;/li&gt;    &lt;li&gt;Select “OK” &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt; &lt;/p&gt;  &lt;h2&gt;2. Create the Model&lt;/h2&gt;  &lt;p&gt;Let’s go ahead and add an Entity Data Model to our project;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Project –&amp;gt; Add New Item… &lt;/li&gt;    &lt;li&gt;Select ‘Data’ from the left menu &lt;/li&gt;    &lt;li&gt;Select ‘ADO.NET Entity Data Model’ from the list of available items &lt;/li&gt;    &lt;li&gt;Name the model ‘PersonModel.edmx’ &lt;/li&gt;    &lt;li&gt;Click ‘Add’ &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;We are going to use Model First for this walkthrough but if you are mapping to an existing database you would now select ‘Generate from database’, follow the prompts and then skip to step 4.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Select ‘Empty model’ &lt;/li&gt;    &lt;li&gt;Click ‘Finish’ &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Let’s add a Person entity to our model:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;On the design surface; Right Click –&amp;gt; Add –&amp;gt; Entity &lt;/li&gt;    &lt;li&gt;Name the entity ‘Person’ &lt;/li&gt;    &lt;li&gt;Click ‘OK’ &lt;/li&gt;    &lt;li&gt;On the Person entity; Right Click –&amp;gt; Add –&amp;gt; Scalar Property &lt;/li&gt;    &lt;li&gt;Name the property ‘Full Name’ &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-68-19-metablogapi/0878.image_5F00_0677F887.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-68-19-metablogapi/3515.image_5F00_thumb_5F00_742F31C4.png" width="235" height="244"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;h2&gt;3. Create the Database&lt;/h2&gt;  &lt;p&gt;Now that we’ve defined the model we can generate a database schema to store our data:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;On the design surface; Right Click –&amp;gt; Generate Database from Model &lt;/li&gt;    &lt;li&gt;Click ‘New Connection…’ &lt;/li&gt;    &lt;li&gt;Specify the details of the database you wish to create &lt;/li&gt;    &lt;li&gt;Click ‘OK’ &lt;/li&gt;    &lt;li&gt;If prompted to create the database; click ‘Yes’ &lt;/li&gt;    &lt;li&gt;Click ‘Next’ then ‘Finish’ &lt;/li&gt;    &lt;li&gt;On the generated script; Right Click –&amp;gt; Execute SQL… &lt;/li&gt;    &lt;li&gt;Specify your database server and click ‘Connect’ &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt; &lt;/p&gt;  &lt;h2&gt;4. Swap to DbContext Code Generation&lt;/h2&gt;  &lt;p&gt;The PersonModel is currently generating a derived ObjectContext and entity classes that derive from EntityObject, we want to make use of the simplified DbContext API.&lt;/p&gt;  &lt;p&gt;To use DbContext we need to install the EntityFramework NuGet package:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Project –&amp;gt; Add Library Package Reference… &lt;/li&gt;    &lt;li&gt;Select the “Online” tab &lt;/li&gt;    &lt;li&gt;Search for “EntityFramework.Preview” and select the package &lt;/li&gt;    &lt;li&gt;Click “Install” &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Now we can swap to using DbContext code generation templates:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;On the design surface; Right Click –&amp;gt; Add Code Generation Item… &lt;/li&gt;    &lt;li&gt;Select ‘Online Templates’ from the left menu &lt;/li&gt;    &lt;li&gt;Search for ‘DbContext’ &lt;/li&gt;    &lt;li&gt;Select ‘ADO.NET C# DbContext Generator’ &lt;/li&gt;    &lt;li&gt;Name the item ‘PersonModel.tt’ &lt;/li&gt;    &lt;li&gt;Click ‘Add’ &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-68-19-metablogapi/6355.AddDbContextTemplate_5F00_701405EF.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="AddDbContextTemplate" border="0" alt="AddDbContextTemplate" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-68-19-metablogapi/7848.AddDbContextTemplate_5F00_thumb_5F00_7AD15D44.png" width="648" height="383"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;You’ll notice that two items are added to your project:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;PersonModel.tt      &lt;br&gt;This template generates very simple POCO classes for each entity in your model &lt;/li&gt;    &lt;li&gt;PersonModel.Context.tt      &lt;br&gt;This template generates a derived DbContext to use for querying and persisting data &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt; &lt;/p&gt;  &lt;h2&gt;5. Read &amp;amp; Write Data&lt;/h2&gt;  &lt;p&gt;It’s time to access some data, I’m padding out the Main method in Program.cs file as follows;&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre&gt;&lt;span style="color:blue"&gt;&lt;span style="font-family:consolas;font-size:x-small"&gt;&lt;span style="font-family:calibri;font-size:x-small" face="Calibri" size="2"&gt;class &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;span style="color:#2b91af"&gt;Program &lt;br&gt;&lt;/span&gt;{ &lt;br&gt;&lt;span style="color:blue"&gt;  static void &lt;/span&gt;Main(&lt;span style="color:blue"&gt;string&lt;/span&gt;[] args) &lt;br&gt;  { &lt;br&gt;&lt;span style="color:blue"&gt;    using &lt;/span&gt;(&lt;span style="color:blue"&gt;var &lt;/span&gt;db = &lt;span style="color:blue"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af"&gt;PersonModelContainer&lt;/span&gt;()) &lt;br&gt;    { &lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;span style="color:green"&gt;      // Save some data &lt;br&gt;&lt;/span&gt;      db.People.Add(&lt;span style="color:blue"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af"&gt;Person &lt;/span&gt;{ FullName = &lt;span style="color:#a31515"&gt;&amp;quot;Bob&amp;quot; &lt;/span&gt;}); &lt;br&gt;      db.People.Add(&lt;span style="color:blue"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af"&gt;Person &lt;/span&gt;{ FullName = &lt;span style="color:#a31515"&gt;&amp;quot;Ted&amp;quot; &lt;/span&gt;}); &lt;br&gt;      db.People.Add(&lt;span style="color:blue"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af"&gt;Person &lt;/span&gt;{ FullName = &lt;span style="color:#a31515"&gt;&amp;quot;Jane&amp;quot; &lt;/span&gt;}); &lt;br&gt;      db.SaveChanges(); &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;

  &lt;pre&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;span style="color:green"&gt;      // Use LINQ to access data &lt;br&gt;&lt;/span&gt;&lt;span style="color:blue"&gt;      var &lt;/span&gt;people = &lt;span style="color:blue"&gt;from &lt;/span&gt;p &lt;span style="color:blue"&gt;in &lt;/span&gt;db.People &lt;br&gt;&lt;span style="color:blue"&gt;        orderby &lt;/span&gt;p.FullName &lt;br&gt;&lt;span style="color:blue"&gt;        select &lt;/span&gt;p; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;

  &lt;pre&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;span style="color:#2b91af"&gt;      Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515"&gt;&amp;quot;All People:&amp;quot;&lt;/span&gt;); &lt;br&gt;&lt;span style="color:blue"&gt;      foreach &lt;/span&gt;(&lt;span style="color:blue"&gt;var &lt;/span&gt;person &lt;span style="color:blue"&gt;in &lt;/span&gt;people) &lt;br&gt;      { &lt;br&gt;&lt;span style="color:#2b91af"&gt;        Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515"&gt;&amp;quot;- {0}&amp;quot;&lt;/span&gt;, person.FullName); &lt;br&gt;      } &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;

  &lt;pre&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;&lt;span style="color:green"&gt;      // Change someones name &lt;br&gt;&lt;/span&gt;      db.People.First().FullName = &lt;span style="color:#a31515"&gt;&amp;quot;Janet&amp;quot;&lt;/span&gt;; &lt;br&gt;      db.SaveChanges(); &lt;br&gt;    }&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;

  &lt;pre&gt;&lt;span style="font-family:consolas"&gt;&lt;span style="font-size:x-small"&gt;&lt;span style="font-family:calibri" face="Calibri"&gt;&lt;span style="font-size:x-small" size="2"&gt;    &lt;span style="color:#2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515"&gt;&amp;quot;Press any key to exit...&amp;quot;&lt;/span&gt;); &lt;br&gt;&lt;span style="color:#2b91af"&gt;    Console&lt;/span&gt;.ReadKey(); &lt;br&gt;  }&lt;/span&gt;&lt;/span&gt; &lt;br&gt;} &lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;Summary&lt;/h2&gt;

&lt;p&gt;In this walkthrough we looked at Model First development using the DbContext API. We looked at building a model, generating a database, swapping to DbContext code generation and then saving and querying data.&lt;/p&gt;

&lt;p&gt;Rowan Miller 
  &lt;br&gt;Program Manager 

  &lt;br&gt;ADO.NET Entity Framework&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10214235" width="1" height="1"&gt;</summary><author><name>dpblogs</name></author><source gr:stream-id="feed/http://blogs.msdn.com/adonet/rss.xml"><id>tag:google.com,2005:reader/feed/http://blogs.msdn.com/adonet/rss.xml</id><title type="html">ADO.NET team blog</title><link rel="alternate" href="http://blogs.msdn.com/b/adonet/" type="text/html" /></source><feedburner:origLink>http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-model-amp-database-first-walkthrough.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1318364846441"><id gr:original-id="91d46819-8472-40ad-a661-2c78acb4018c:10215185">tag:google.com,2005:reader/item/7d9b455d11dd5b15</id><category term="ADO.NET" scheme="http://blogs.msdn.com/b/adonet/archive/tags/ADO-NET/" /><category term="Entity Framework" scheme="http://blogs.msdn.com/b/adonet/archive/tags/Entity+Framework/" /><category term="What's New" scheme="http://blogs.msdn.com/b/adonet/archive/tags/What_2700_s+New/" /><category term="Code First" scheme="http://blogs.msdn.com/b/adonet/archive/tags/Code+First/" /><title type="html">EF 4.2 Release Candidate Available</title><published>2011-09-28T15:01:00Z</published><updated>2011-09-28T15:01:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/q-kQHgTLXwk/ef-4-2-release-candidate-available.aspx" type="text/html" /><link rel="enclosure" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-10-21-51-85/Entity-Framework-4.2-RC-_2D00_-EULA.rtf" type="application/msword" length="150019" /><summary xml:base="http://blogs.msdn.com/b/adonet/" type="html">&lt;p&gt;We recently &lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/08/09/ef-releases-amp-versioning-call-for-feedback.aspx"&gt;posted&lt;/a&gt; about our plans to rationalize how we name, distribute and talk about releases. We heard a resounding ‘Yes’ from you so then we &lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/08/11/next-ef-release-plans.aspx"&gt;posted&lt;/a&gt; about our plans for releasing EF 4.2. We then shipped EF 4.2 Beta 1.&lt;/p&gt;
&lt;p&gt;Third party EF provider writers tried out EF 4.2 Beta 1 and identified a couple more areas that were causing issues for them. We have been working to improve these areas and today we are making EF 4.2 Release Candidate available. The final release of EF 4.2 will be available in the near future.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;EF 4.2 = Bug Fixes + Semantic Versioning&lt;/h2&gt;
&lt;p&gt;When we released ‘&lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/07/25/ef-4-1-update-1-released.aspx"&gt;EF 4.1 Update 1&lt;/a&gt;’ we introduced a bug that affects third party EF providers using a generic class for their provider factory implementation, things such as WrappingProviderFactory&amp;lt;TProvider&amp;gt;. We missed this during our testing and it was reported by some of our provider writers after we had shipped. If you hit this bug you will get a FileLoadException stating “&lt;em&gt;The given assembly name or codebase was invalid&lt;/em&gt;”. This bug is blocking some third party providers from working with ‘EF 4.1 Update 1’ and the only workaround for folks using an affected provider is to ask them to remain on EF 4.1. Third party provider writers then identified some areas in EF where it was hard to get EF to work with their providers, so we decided to address these issues in the EF 4.2 release. These provider related changes will be the only changes between ‘EF 4.1 Update 1’ and ‘EF 4.2’.&lt;/p&gt;
&lt;p&gt;Obviously a single bug fix wouldn’t normally warrant bumping the minor version, but we also wanted to take the opportunity to get onto the semantic versioning path rather than calling the release ‘EF 4.1 Update 2’.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;The following walkthroughs are available for EF 4.2:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="background-color:#ffffff"&gt;&lt;/span&gt;&lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-code-first-walkthrough.aspx"&gt;Code First Walkthrough&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-model-amp-database-first-walkthrough.aspx"&gt;Model First / Database First Walkthrough&lt;/a&gt;&lt;span style="background-color:#ffffff"&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;Getting EF 4.2 Release Candidate&lt;/h2&gt;
&lt;p&gt;EF 4.2 Release Candidate is available via &lt;a href="http://nuget.org"&gt;NuGet&lt;/a&gt; as the &lt;a href="http://nuget.org/List/Packages/EntityFramework.Preview"&gt;EntityFramework.Preview&lt;/a&gt; package. If you already have the EntityFramework package installed then updating to the latest version will give you EF 4.2.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://nuget.org/List/Packages/EntityFramework.Preview"&gt;&lt;img style="background-image:none;padding-left:0px;padding-right:0px;display:inline;padding-top:0px;border:0px" title="EntityFramework.Preview" border="0" alt="EntityFramework.Preview" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-68-19-metablogapi/3201.EntityFramework.Preview_5F00_58CB23FD.jpg" width="762" height="86"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;Model First &amp;amp; Database First Templates&lt;/h2&gt;
&lt;p&gt;The templates for using the DbContext API with Model First and Database First are now available under the “Online Templates” tab when “Right-Click –&amp;gt; Add Code Generation Item…” is selected on the EF Designer.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-68-19-metablogapi/3223.AddDbContextTemplate_5F00_05892DA8.png"&gt;&lt;img style="background-image:none;padding-left:0px;padding-right:0px;display:inline;padding-top:0px;border:0px" title="AddDbContextTemplate" border="0" alt="AddDbContextTemplate" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-68-19-metablogapi/0083.AddDbContextTemplate_5F00_thumb_5F00_495D61FF.png" width="652" height="387"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;Support&lt;/h2&gt;
&lt;p&gt;This is a preview of features that will be available in future releases and is designed to allow you to provide feedback on the design of these features. It is not intended or licensed for use in production. If you need assistance we have an &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/adonetefx/threads"&gt;Entity Framework Pre-Release Forum&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;What’s Not in This Release?&lt;/h2&gt;
&lt;p&gt;As covered earlier this release is just a small update to the DbContext &amp;amp; Code First runtime. The features that were included in &lt;a href="http://blogs.msdn.com/b/adonet/archive/2011/06/30/announcing-the-microsoft-entity-framework-june-2011-ctp.aspx"&gt;EF June 2011 CTP&lt;/a&gt; require changes to the Core Entity Framework Libraries that are part of the .NET Framework and will ship at a later date. Note that Code First Migrations is not compatible with the EntityFramework.Preview package.  Please continue to use the most recent EntityFramework package when working with Migrations.  Our Code First Migrations work is continuing and we are working to get the next release in your hands soon. &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;ADO.NET Entity Framework Team&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10215185" width="1" height="1"&gt;</summary><author><name>dpblogs</name></author><source gr:stream-id="feed/http://blogs.msdn.com/adonet/rss.xml"><id>tag:google.com,2005:reader/feed/http://blogs.msdn.com/adonet/rss.xml</id><title type="html">ADO.NET team blog</title><link rel="alternate" href="http://blogs.msdn.com/b/adonet/" type="text/html" /></source><feedburner:origLink>http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-release-candidate-available.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1318277049713"><id gr:original-id="http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/">tag:google.com,2005:reader/item/6ae2e58f6deead46</id><category term="Chrome" /><category term="Dart" /><category term="Dart programming language" /><category term="DartLang" /><category term="DartProgrammingLanguage" /><category term="google" /><category term="Google Dart" /><category term="google products" /><category term="GoogleDart" /><category term="GoogleProducts" /><category term="java" /><category term="JavaScript" /><category term="javascript virtual machine" /><category term="JavascriptVirtualMachine" /><category term="programming" /><category term="Programming Language" /><category term="programming languages" /><category term="ProgrammingLanguage" /><category term="ProgrammingLanguages" /><category term="python" /><category term="spot" /><category term="structured web programming" /><category term="StructuredWebProgramming" /><title type="html">Google takes steady aim at web programming with Dart</title><published>2011-10-10T19:53:00Z</published><updated>2011-10-10T19:53:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/UQ5JQxQP-cI/" type="text/html" /><summary xml:base="http://www.engadget.com/" type="html">&lt;div&gt;
	&lt;p style="text-align:center"&gt;
		&lt;a href="http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/dart-1318242959.jpg" style="border-width:0px;border-style:solid;margin:4px"&gt;&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;
		Google has brought its arm up, narrowed its focus and let &lt;a href="http://www.engadget.com/2011/09/09/google-set-to-introduce-dart-a-new-structured-programming-langu/"&gt;Dart&lt;/a&gt; fly. The new programming language focuses on web apps, and the internet giant is hoping that Dart will feel "familiar and natural" to developers raised on a diet of rival programming languages. The ability to execute code in either a native &lt;a href="http://www.engadget.com/tag/virtual%20machine/"&gt;virtual machine&lt;/a&gt; (which emulates how it'd work in real-life) or a &lt;a href="http://www.engadget.com/tag/javascript"&gt;JavaScript&lt;/a&gt; engine means that anything can be compiled to run on current web browsers. Dart devs are also exploring the idea of cramming a virtual machine inside future versions of &lt;a href="http://www.engadget.com/tag/chrome"&gt;Chrome&lt;/a&gt;. Eager coders can now get their teeth into all of Google's open source development tools by targeting the second source link below.&lt;/p&gt;
&lt;/div&gt;&lt;p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both"&gt;&lt;a href="http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/"&gt;Google takes steady aim at web programming with Dart&lt;/a&gt; originally appeared on &lt;a href="http://www.engadget.com"&gt;Engadget&lt;/a&gt; on Mon, 10 Oct 2011 15:53:00 EDT.  Please see our &lt;a href="http://www.weblogsinc.com/feed-terms/"&gt;terms for use of feeds&lt;/a&gt;.&lt;/p&gt;&lt;h6 style="clear:both;padding:8px 0 0 0;height:2px;font-size:1px;border:0;margin:0;padding:0"&gt;&lt;/h6&gt;&lt;a href="http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/" rel="bookmark" title="Permanent link to this entry"&gt;Permalink&lt;/a&gt; &lt;img src="http://www.blogsmithmedia.com/www.engadget.com/media/post_label_VIA.gif" alt=""&gt;&lt;span&gt;&lt;a href="http://thenextweb.com/google/2011/10/10/google-unveils-dart-its-new-programming-language-for-building-web-applications/"&gt;TNW&lt;/a&gt;&lt;/span&gt;  |  &lt;img src="http://www.blogsmithmedia.com/www.engadget.com/media/post_label_source.gif" alt="source"&gt;&lt;span&gt;&lt;a href="http://googlecode.blogspot.com/2011/10/dart-language-for-structured-web.html"&gt;Google Code&lt;/a&gt;, &lt;a href="http://www.dartlang.org/"&gt;Dartlang&lt;/a&gt;&lt;/span&gt;  | &lt;a href="http://www.engadget.com/forward/20077545/" title="Send this entry to a friend via email"&gt;Email this&lt;/a&gt; | &lt;a href="http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/#comments" title="View reader comments on this entry"&gt;Comments&lt;/a&gt;</summary><author><name>Mat Smith</name></author><source gr:stream-id="feed/http://www.engadget.com/rss.xml"><id>tag:google.com,2005:reader/feed/http://www.engadget.com/rss.xml</id><title type="html">Engadget</title><link rel="alternate" href="http://www.engadget.com" type="text/html" /></source><feedburner:origLink>http://www.engadget.com/2011/10/10/google-takes-steady-aim-at-web-programming-with-dart/</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1318207641155"><id gr:original-id="c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7987832">tag:google.com,2005:reader/item/7427ad76e39c6586</id><category term="ASP.NET" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/ASP.NET/default.aspx" /><category term="ASP.NET MVC" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/ASP.NET+MVC/default.aspx" /><category term="ASP.NET MVC 4.0" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/ASP.NET+MVC+4.0/default.aspx" /><category term="C#.NET" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/C_23002E00_NET/default.aspx" /><title type="html">ASP.NET MVC 4.0 Mobile Template</title><published>2011-10-09T08:22:23Z</published><updated>2011-10-09T08:22:23Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/ZSmc4FtZWFs/asp-net-mvc-4-0-mobile-template.aspx" type="text/html" /><summary xml:base="http://weblogs.asp.net/" type="html">&lt;p&gt;Microsoft has released the much awaited ASP.NET MVC 4.0 developer preview and there are lots of features bundle with it. One of the greatest features is a mobile website. Yes, Now with ASP.NET MVC 4.0 you can create mobile site also. So let’s create a simple application and let’s see how it works.&lt;/p&gt;  &lt;p&gt;To create mobile site first you need to click File-&amp;gt;New Project-&amp;gt;ASP.NET MVC 4.0 Web application. Like following.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/NewHelloWorld_4F2062CB.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Hello world ASP.NET MVC 4.0 Mobile site-www.dotnetjalps.com" border="0" alt="Hello world ASP.NET MVC 4.0 Mobile site-www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/NewHelloWorld_thumb_7E422895.png" width="504" height="308"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now once you click OK it will open a new another dialog like following where we have to choose the Mobile site.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/Mobile_388D78AA.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Mobile Application with asp.net mvc 4.0-www.dotnetjalps.com" border="0" alt="Mobile Application with asp.net mvc 4.0-www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/Mobile_thumb_3F10D26D.png" width="504" height="454"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;As you can see in above post I have selected Razor view Once you click it will create a new application like following. As you can see similar structure as normal MVC Application application below.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/MobieSite_7FFF0637.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="ASP.NET MVC 4.0 Mobile Structure-http://www.dotnetjalps.com" border="0" alt="ASP.NET MVC 4.0 Mobile Structure-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/MobieSite_thumb_0A4004CB.png" width="504" height="285"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This view are based on the standard jQuery Mobile. So this can be viewed in any tablet or mobile device. So if you have IPad and IPhone both then it will work on both. You need not to different application for both. see the browser first I have selected standard IPad size of browser.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/Ipad_1A1F23C2.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Ipad" border="0" alt="Ipad" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/Ipad_thumb_60003115.png" width="504" height="356"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now lets see how it look in mobile. So I have made my browser same site as mobile. As you can see its working in both.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/MobileIPhone_3AD2C0DC.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Mobile View with ASP.NET MVC 4.0-http://www.dotnetjalps.com" border="0" alt="Mobile View with ASP.NET MVC 4.0-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/MobileIPhone_thumb_16118398.png" width="504" height="861"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If you see the code of view you can see the razor syntax over there. Nothing change in razor syntax. But as you can see in below code you need to use Jquery mobile attributes like data-Role and other stuff which will convert standard HTML into mobile or device compatible website.&lt;/p&gt;  &lt;pre&gt;&amp;lt;ul data-role=&amp;quot;listview&amp;quot; data-inset=&amp;quot;true&amp;quot;&amp;gt;
    &amp;lt;li data-role=&amp;quot;list-divider&amp;quot;&amp;gt;Navigation&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;@Html.ActionLink(&amp;quot;About&amp;quot;, &amp;quot;About&amp;quot;, &amp;quot;Home&amp;quot;)&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;@Html.ActionLink(&amp;quot;Contact&amp;quot;, &amp;quot;Contact&amp;quot;, &amp;quot;Home&amp;quot;)&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/pre&gt;

&lt;p&gt;That's it. It’s very easy you can create mobile compatible site in few hours. Hope you like it. Stay tuned for more.. Till then happy programming.&lt;/p&gt;

&lt;p&gt;Namaste!!&lt;/p&gt;&lt;div style="margin:0px;padding:0px 0px 0px 0px"&gt;&lt;div&gt;&lt;a href="http://dotnetshoutout.com/Submit?url=http%3a%2f%2fweblogs.asp.net%2fjalpeshpvadgama%2farchive%2f2011%2f10%2f09%2fasp-net-mvc-4-0-mobile-template.aspx&amp;amp;title=ASP.NET+MVC+4.0+Mobile+Template"&gt;&lt;img alt="Shout it" src="http://dotnetshoutout.com/image.axd?url=http://weblogs.asp.net/jalpeshpvadgama/archive/2011/10/09/asp-net-mvc-4-0-mobile-template.aspx" style="border:0px"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7987832" width="1" height="1"&gt;</summary><author><name>Jalpesh P. Vadgama</name></author><source gr:stream-id="feed/http://weblogs.asp.net/MainFeed.aspx"><id>tag:google.com,2005:reader/feed/http://weblogs.asp.net/MainFeed.aspx</id><title type="html">ASP.NET Weblogs</title><link rel="alternate" href="http://weblogs.asp.net/" type="text/html" /></source><feedburner:origLink>http://weblogs.asp.net/jalpeshpvadgama/archive/2011/10/09/asp-net-mvc-4-0-mobile-template.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1318207624326"><id gr:original-id="c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7988139">tag:google.com,2005:reader/item/ebde4a99b9555032</id><category term="ASP.NET" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/ASP.NET/default.aspx" /><category term="C#.NET" scheme="http://weblogs.asp.net/jalpeshpvadgama/archive/tags/C_23002E00_NET/default.aspx" /><title type="html">new solution explorer feature in visual studio11 developer preview</title><published>2011-10-09T18:16:32Z</published><updated>2011-10-09T18:16:32Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/9E3OF1rGv9Q/new-solution-explorer-feature-in-visual-studio11-developer-preview.aspx" type="text/html" /><summary xml:base="http://weblogs.asp.net/" type="html">&lt;p&gt;Microsoft Visual Studio11 Developer preview comes with bunch of new features and Solution explorer is also get some new features in it. There are few new icons added at top of solution explorer like below.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorerVisualStudio2011_10EF5590.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Solution exploer new features in visual studio 2011-http://www.dotnetjalps.com" border="0" alt="Solution exploer new features in visual studio 2011-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorerVisualStudio2011_thumb_7FBB77EC.png" width="504" height="530"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;&lt;/h3&gt;  &lt;h4&gt;Create new window with copy of this Window Feature:&lt;/h4&gt;  &lt;p&gt;Now there is a one feature given with solution explorer you can create a another instance of solution explorer via clicking on last icon on solution explorer. Once you click the Last Icon for create copy. It will open a new solution explorer windows as below.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/CopySolutionExplorerWindow_6787E7C4.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Copy solution exploer in visual studio 11-http://www.dotnetjalps.com" border="0" alt="Copy solution exploer in visual studio 11-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/CopySolutionExplorerWindow_thumb_439F106A.png" width="504" height="362"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h4&gt;Properties in Solution Explorer:&lt;/h4&gt;  &lt;p&gt;Now only you can not only the see the properties of class but you can also see the methods property. Once you double-click class then it will show all methods available when you double-click method it will load the code in editor like in below.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/Properties_3845D660.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Solution exploer properties in visual sutio11-http://www.dotnetjalps.com" border="0" alt="Solution exploer properties in visual sutio11-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/Properties_thumb_2E313535.png" width="504" height="325"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now once you click Page_load method you will see the page_load highlighted  in code editor&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/Page_load_3E10542C.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="Highted code from solution explorer properties-http://www.dotnetjalps.com" border="0" alt="Highted code from solution explorer properties-http://www.dotnetjalps.com" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/Page_load_thumb_1A93AFC7.png" width="504" height="225"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h4&gt;&lt;/h4&gt;  &lt;h4&gt;Previous next view in solution explorer:&lt;/h4&gt;  &lt;p&gt;You can move previous and next with solution explorer. For example you have search with about like following .&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorerContains_275DE018.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="SolutionExplorerContains" border="0" alt="SolutionExplorerContains" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorerContains_thumb_2390157B.png" width="504" height="506"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;It will search and load About us view like following.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorePreviousNext_44736255.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="SolutionExplorePreviousNext" border="0" alt="SolutionExplorePreviousNext" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/SolutionExplorePreviousNext_thumb_07FAEDAB.png" width="504" height="396"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;As you can see in above image this is About us view and you can also see that first previous button is enabled. Now once you click that it will return to default view.&lt;/p&gt;  &lt;h4&gt;Search in Solution Explorer:&lt;/h4&gt;  &lt;p&gt;Now in Solution explorer search is also provided you can search specific item in solution explorer.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://weblogs.asp.net/blogs/jalpeshpvadgama/SearchinSolutionsExplorer_6A58ECDE.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px" title="SearchinSolutionsExplorer" border="0" alt="SearchinSolutionsExplorer" src="http://weblogs.asp.net/blogs/jalpeshpvadgama/SearchinSolutionsExplorer_thumb_58B8DC46.png" width="504" height="312"&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;As you can see in above image it is a incremental search so when you start typing it will start searching. &lt;/p&gt;  &lt;p&gt;That’s it. Hope you like it. Stay tuned for more.. Till then happy programming..&lt;/p&gt;  &lt;p&gt;Namaste!!&lt;/p&gt;&lt;div style="margin:0px;padding:0px 0px 0px 0px"&gt;&lt;div&gt;&lt;a href="http://dotnetshoutout.com/Submit?url=http%3a%2f%2fweblogs.asp.net%2fjalpeshpvadgama%2farchive%2f2011%2f10%2f10%2fnew-solution-explorer-feature-in-visual-studio11-developer-preview.aspx&amp;amp;title=new+solution+explorer+feature+in+visual+studio11+developer+preview"&gt;&lt;img alt="Shout it" src="http://dotnetshoutout.com/image.axd?url=http://weblogs.asp.net/jalpeshpvadgama/archive/2011/10/10/new-solution-explorer-feature-in-visual-studio11-developer-preview.aspx" style="border:0px"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7988139" width="1" height="1"&gt;</summary><author><name>Jalpesh P. Vadgama</name></author><source gr:stream-id="feed/http://weblogs.asp.net/MainFeed.aspx"><id>tag:google.com,2005:reader/feed/http://weblogs.asp.net/MainFeed.aspx</id><title type="html">ASP.NET Weblogs</title><link rel="alternate" href="http://weblogs.asp.net/" type="text/html" /></source><feedburner:origLink>http://weblogs.asp.net/jalpeshpvadgama/archive/2011/10/10/new-solution-explorer-feature-in-visual-studio11-developer-preview.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317995069198"><id gr:original-id="">tag:google.com,2005:reader/item/9718502746da8f86</id><title type="html">Windows PowerShell Command Builder Getting Started Guide</title><published>2011-10-07T13:44:29Z</published><updated>2011-10-07T13:44:29Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/n6-ioT_ll6M/details.aspx" type="text/html" /><summary xml:base="http://www.microsoft.com/downloads/" type="html">The Windows PowerShell Command Builder for Microsoft SharePoint 2010 Products and Microsoft Office 365 is a Silverlight 4 application that is designed to help IT professionals and power users learn how to use Windows PowerShell for administrative tasks.&lt;div&gt;
&lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=Yq7wn19Ha_g:Hksrqo0L2co:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=yIl2AUoC8zA" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=Yq7wn19Ha_g:Hksrqo0L2co:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=dnMXMwOfBR0" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=Yq7wn19Ha_g:Hksrqo0L2co:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=Yq7wn19Ha_g:Hksrqo0L2co:F7zBnMyn0Lo" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=Yq7wn19Ha_g:Hksrqo0L2co:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=Yq7wn19Ha_g:Hksrqo0L2co:V_sGLiPBpWU" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/MicrosoftDownloadCenter/~4/Yq7wn19Ha_g" height="1" width="1"&gt;</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml"><id>tag:google.com,2005:reader/feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml</id><title type="html">Microsoft Download Center</title><link rel="alternate" href="http://www.microsoft.com/downloads/" type="text/html" /></source><feedburner:origLink>http://feedproxy.google.com/~r/MicrosoftDownloadCenter/~3/Yq7wn19Ha_g/details.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317995002758"><id gr:original-id="">tag:google.com,2005:reader/item/0b4eb65cd954ba23</id><title type="html">SQL Server 2008 Service Pack 3</title><published>2011-10-07T13:43:22Z</published><updated>2011-10-07T13:43:22Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/-yZKN1E_FEU/details.aspx" type="text/html" /><summary xml:base="http://www.microsoft.com/downloads/" type="html">Download SQL Server 2008 SP3&lt;div&gt;
&lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=LCQgJHbQ7vM:xPHvEIXMJsU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=yIl2AUoC8zA" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=LCQgJHbQ7vM:xPHvEIXMJsU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=dnMXMwOfBR0" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=LCQgJHbQ7vM:xPHvEIXMJsU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=LCQgJHbQ7vM:xPHvEIXMJsU:F7zBnMyn0Lo" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=LCQgJHbQ7vM:xPHvEIXMJsU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=LCQgJHbQ7vM:xPHvEIXMJsU:V_sGLiPBpWU" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/MicrosoftDownloadCenter/~4/LCQgJHbQ7vM" height="1" width="1"&gt;</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml"><id>tag:google.com,2005:reader/feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml</id><title type="html">Microsoft Download Center</title><link rel="alternate" href="http://www.microsoft.com/downloads/" type="text/html" /></source><feedburner:origLink>http://feedproxy.google.com/~r/MicrosoftDownloadCenter/~3/LCQgJHbQ7vM/details.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317959463279"><id gr:original-id="http://channel9.msdn.com/posts/NET-45-Oleg-Lvovitch-and-Kevin-Ransom-Managed-Extensibility-Framework-MEF-20">tag:google.com,2005:reader/item/fa5675b139b99ae6</id><category term="MEF" /><category term=".NET Framework 4.5" /><title type="html">.NET 4.5: Oleg Lvovitch and Kevin Ransom - Managed Extensibility Framework (MEF) 2.0</title><published>2011-10-05T19:53:02Z</published><updated>2011-10-05T19:53:02Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/NJ2kZ0DONM0/NET-45-Oleg-Lvovitch-and-Kevin-Ransom-Managed-Extensibility-Framework-MEF-20" type="text/html" /><link rel="enclosure" href="http://video.ch9.ms/ch9/cad9/951f983b-b937-4d4a-b3ab-9f720013cad9/NET45MEF20_ch9.wmv" type="video/x-ms-wmv" length="383283633" /><summary xml:base="http://channel9.msdn.com/" type="html">&lt;p&gt;The &lt;strong&gt;&lt;a href="http://mef.codeplex.com/"&gt;Managed Extensibility Framework&lt;/a&gt;&lt;/strong&gt; (or &lt;strong&gt;MEF&lt;/strong&gt; for short) simplifies the creation of extensible applications. MEF offers discovery and composition capabilities that you can leverage to load application extensions. In the upcoming release of .NET 4.5, MEF will ship version 2.0. Recently, I got a chance to meet and chat with MEF developers &lt;strong&gt;Oleg Lvovitch&lt;/strong&gt; and &lt;strong&gt;Kevin Ransom. &lt;/strong&gt;What is MEF? What problems does MEF solve? What improvements have been made in v2.0? How are people using MEF in the real world? What changes in BCL 4.5 helped shape new features or improvements/refinement? These questions and more get answered by those who know best. Great meeting and chatting with you, Oleg and Kevin.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Great&lt;/em&gt; work going on in MEF world! Tune in. Enjoy.&lt;/p&gt; &lt;img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&amp;amp;dcsuri=http://channel9.msdn.com/Feeds/RSS&amp;amp;WT.dl=0&amp;amp;WT.entryid=Entry:RSSView:951f983bb9374d4ab3ab9f720013cad9"&gt;</summary><author><name>Charles</name></author><source gr:stream-id="feed/http://channel9.msdn.com/rss.aspx?ForumID=14&amp;Mode=0&amp;sortby=0&amp;sortorder=1"><id>tag:google.com,2005:reader/feed/http://channel9.msdn.com/rss.aspx?ForumID=14&amp;Mode=0&amp;sortby=0&amp;sortorder=1</id><title type="html">Channel 9</title><link rel="alternate" href="http://channel9.msdn.com/" type="text/html" /></source><feedburner:origLink>http://channel9.msdn.com/posts/NET-45-Oleg-Lvovitch-and-Kevin-Ransom-Managed-Extensibility-Framework-MEF-20</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317700013637"><id gr:original-id="c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7976272">tag:google.com,2005:reader/item/65cefb5c94e93a1b</id><category term="ASP.NET" scheme="http://weblogs.asp.net/hajan/archive/tags/ASP.NET/default.aspx" /><category term="Minification" scheme="http://weblogs.asp.net/hajan/archive/tags/Minification/default.aspx" /><category term="Minify" scheme="http://weblogs.asp.net/hajan/archive/tags/Minify/default.aspx" /><category term="Squish" scheme="http://weblogs.asp.net/hajan/archive/tags/Squish/default.aspx" /><category term="SquishIt" scheme="http://weblogs.asp.net/hajan/archive/tags/SquishIt/default.aspx" /><title type="html">Squish your CSS and JS files in your ASP.NET web apps</title><published>2011-10-03T19:20:00Z</published><updated>2011-10-03T19:20:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/YM_S6qE2_cQ/squish-your-css-and-js-files-in-your-asp-net-web-apps.aspx" type="text/html" /><summary xml:base="http://weblogs.asp.net/" type="html">&lt;div style="float:none;margin:0px;padding:4px 0px 4px 0px"&gt;&lt;/div&gt;&lt;p&gt;SquishIt is a nice library that helps you nicely minify your CSS and JavaScript files with very small effort. &lt;/p&gt;  &lt;p&gt;The tool works perfectly fine in both ASP.NET WebForms and ASP.NET MVC and is available to get &amp;amp; install using NuGet package manager.&lt;/p&gt;  &lt;p&gt;Open NuGet package manager or NuGet Manager PowerShell Console..&lt;/p&gt;  &lt;p&gt;NuGet package manager:&lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_1.png"&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_2.png"&gt;&lt;/p&gt;  &lt;p&gt;As you can see, SquishIt is available for both ASP.NET and ASP.NET MVC.&lt;/p&gt;  &lt;p&gt;NuGet PowerShell Console:&lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_3.png"&gt;&lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_4.png"&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br&gt;Now, lets add our CSS and JS files that we want to Squish.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_5.png"&gt;&lt;/p&gt;  &lt;p&gt;SquishIt has two functions for CSS and JavaScript. The method Render does the squishing. As you can see, we use ‘#’ where the method will auto-generate unique id for the script.&lt;/p&gt;  &lt;p&gt;Once you run your web, open source code and check the rendered CSS/JS files&lt;/p&gt;  &lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_6.png"&gt;&lt;/p&gt;  &lt;p&gt;Since SquishIt works based on the Debug setting in Web.config&lt;/p&gt;  &lt;pre&gt;&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;compilation &lt;/span&gt;&lt;span style="color:red"&gt;debug&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&amp;quot;&lt;span style="color:blue"&gt;true&lt;/span&gt;&amp;quot; &lt;span style="color:red"&gt;targetFramework&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&amp;quot;&lt;span style="color:blue"&gt;4.0&lt;/span&gt;&amp;quot;&lt;span style="color:blue"&gt;/&amp;gt;
&lt;/span&gt;&lt;/pre&gt;

&lt;p&gt;change the debug setting to &lt;strong&gt;false&lt;/strong&gt; and run the web again…&lt;/p&gt;

&lt;p&gt;Now, if you open the source code in your browser, you will see two files for both, CSS and JS files squished!&lt;/p&gt;

&lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_7.png"&gt;&lt;/p&gt;

&lt;p&gt;You will see that SquishIt has created the new files in the respective folders&lt;/p&gt;

&lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_8.png"&gt;&lt;/p&gt;

&lt;p&gt;If we open the squished file, you will see it is minified&lt;/p&gt;

&lt;p&gt;&lt;img src="http://weblogs.asp.net/blogs/hajan/postimages2011/SquishIt/WebForms/SquishIt_9.png"&gt;&lt;/p&gt;

&lt;p&gt;SquishIt works exactly the same way for ASP.NET MVC!&lt;/p&gt;

&lt;p&gt;Hope this was helpful.&lt;/p&gt;

&lt;p&gt;Regards,
  &lt;br&gt;Hajan&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7976272" width="1" height="1"&gt;</summary><author><name>hajan</name></author><source gr:stream-id="feed/http://weblogs.asp.net/MainFeed.aspx"><id>tag:google.com,2005:reader/feed/http://weblogs.asp.net/MainFeed.aspx</id><title type="html">ASP.NET Weblogs</title><link rel="alternate" href="http://weblogs.asp.net/" type="text/html" /></source><feedburner:origLink>http://weblogs.asp.net/hajan/archive/2011/10/03/squish-your-css-and-js-files-in-your-asp-net-web-apps.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317652816453"><id gr:original-id="http://www.engadget.com/2011/10/03/fitbit-ultra-review/">tag:google.com,2005:reader/item/21a19ad447fd6d98</id><category term="accelerometer" /><category term="calorie counter" /><category term="calorie counters" /><category term="CalorieCounter" /><category term="CalorieCounters" /><category term="Fitbit" /><category term="Fitbit Ultra" /><category term="FitbitUltra" /><category term="fitness" /><category term="fitness gadget" /><category term="fitness gadgets" /><category term="fitness goal" /><category term="fitness goals" /><category term="FitnessGadget" /><category term="FitnessGadgets" /><category term="FitnessGoal" /><category term="FitnessGoals" /><category term="health" /><category term="health goals" /><category term="Health Tech" /><category term="HealthGoals" /><category term="HealthTech" /><category term="pedometer" /><category term="pedometers" /><category term="review" /><category term="video" /><category term="weight loss" /><category term="WeightLoss" /><title type="html">Fitbit Ultra review</title><published>2011-10-03T10:00:00Z</published><updated>2011-10-03T10:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/JE-EgfYeiCU/" type="text/html" /><summary xml:base="http://www.engadget.com/" type="html">&lt;div style="text-align:center"&gt;
	&lt;a href="http://www.engadget.com/2011/10/03/fitbit-ultra-review/"&gt;&lt;img border="1" hspace="4" src="http://www.blogcdn.com/www.engadget.com/media/2011/10/fitbit-ultra-lead.jpg" vspace="4"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
	Oh, hey, Fitbit. Nice to see you again. Although we thought &lt;a href="http://www.engadget.com/2009/10/15/fitbit-review/"&gt;the original&lt;/a&gt; fitness tracker did too little for a $100 gadget, enough people apparently begged to differ, as the the outfit just trotted out a second-gen model, dubbed the Fitbit Ultra. Like its predecessor, this little guy analyzes eating, exercise and sleep patterns (largely with the help of an accompanying website). If you've been following along, you know that design hasn't changed much, while that website and hundred-buck price should be mighty familiar, too. This time around the company is adding a few new features, including Foursquare-esque badges and an altimeter for counting how many steps you've climbed. But does this series of minor enhancements add up to a significant improvement? Time to lace up your running shoes, kids, and meet us after the break.&lt;br&gt;
	&lt;div&gt;&lt;p&gt;&lt;strong&gt;Gallery: &lt;a href="http://www.engadget.com/photos/fitbit-ultra/"&gt;Fitbit Ultra&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra/#4486066"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/09/display-f-climb_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra/#4486067"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/09/display-r-icons-2_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra/#4486068"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/09/plum-and-blue-2_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;p&gt;&lt;strong&gt;Gallery: &lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/"&gt;Fitbit Ultra review&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/#4493122"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/img8359_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/#4493123"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/img8380_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/#4493126"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/img8381_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/#4493128"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/img8382_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;a href="http://www.engadget.com/photos/fitbit-ultra-review/#4493130"&gt;&lt;img src="http://www.blogcdn.com/www.engadget.com/media/2011/10/img8383_thumbnail.jpg" alt="" title=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.engadget.com/2011/10/03/fitbit-ultra-review/" rel="bookmark"&gt;Continue reading &lt;em&gt;Fitbit Ultra review&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both"&gt;&lt;a href="http://www.engadget.com/2011/10/03/fitbit-ultra-review/"&gt;Fitbit Ultra review&lt;/a&gt; originally appeared on &lt;a href="http://www.engadget.com"&gt;Engadget&lt;/a&gt; on Mon, 03 Oct 2011 06:00:00 EDT.  Please see our &lt;a href="http://www.weblogsinc.com/feed-terms/"&gt;terms for use of feeds&lt;/a&gt;.&lt;/p&gt;&lt;h6 style="clear:both;padding:8px 0 0 0;height:2px;font-size:1px;border:0;margin:0;padding:0"&gt;&lt;/h6&gt;&lt;a href="http://www.engadget.com/2011/10/03/fitbit-ultra-review/" rel="bookmark" title="Permanent link to this entry"&gt;Permalink&lt;/a&gt;   |    | &lt;a href="http://www.engadget.com/forward/20071523/" title="Send this entry to a friend via email"&gt;Email this&lt;/a&gt; | &lt;a href="http://www.engadget.com/2011/10/03/fitbit-ultra-review/#comments" title="View reader comments on this entry"&gt;Comments&lt;/a&gt;</summary><author><name>Dana Wollman</name></author><source gr:stream-id="feed/http://www.engadget.com/rss.xml"><id>tag:google.com,2005:reader/feed/http://www.engadget.com/rss.xml</id><title type="html">Engadget</title><link rel="alternate" href="http://www.engadget.com" type="text/html" /></source><feedburner:origLink>http://www.engadget.com/2011/10/03/fitbit-ultra-review/</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434490219"><id gr:original-id="c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7971240">tag:google.com,2005:reader/item/987bd7ec01599215</id><title type="html">Why NuGet for Visual Studio 2010 is so useful!</title><published>2011-09-30T14:20:43Z</published><updated>2011-09-30T14:20:43Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/24-r_EaQWHI/why-nuget-for-visual-studio-2010-is-so-useful.aspx" type="text/html" /><summary xml:base="http://weblogs.asp.net/aspnet-team/default.aspx" type="html">Recently I delivered a session at Virtual TechDays on why NuGet is so useful. As a part of the demonstration, I was showcasing how it automatically allows us to update some of the external reference libraries. Point in case, here is jQuery. Starting Visual Studio 2008 SP1, we have been shipping jQuery and intellisense for jQuery thereof. With Visual Studio 2010, out of the box, when we create a “File – New Project – ASP.NET Web Application” (which would create a Webforms application) it would automatically add the jQuery script files for jQuery 1.4.1 version. This was the then latest version of jQuery when we shipped Visual Studio 2010 way back in early 2010. With the new ASP.NET MVC 3 Tools Update that was shipped in April, this year, when...(&lt;a href="http://geekswithblogs.net/ranganh/archive/2011/09/30/why-nuget-for-visual-studio-2010-is-so-useful.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7971240" width="1" height="1"&gt;</summary><author><name>ASP.NET</name></author><source gr:stream-id="feed/http://weblogs.asp.net/aspnet-team/rss.aspx"><id>tag:google.com,2005:reader/feed/http://weblogs.asp.net/aspnet-team/rss.aspx</id><title type="html">Latest Microsoft Blogs</title><link rel="alternate" href="http://weblogs.asp.net/aspnet-team/default.aspx" type="text/html" /></source><feedburner:origLink>http://geekswithblogs.net/ranganh/archive/2011/09/30/why-nuget-for-visual-studio-2010-is-so-useful.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434480526"><id gr:original-id="http://channel9.msdn.com/Shows/Cloud+Cover/Episode-60-Introducing-the-Windows-Azure-Platform-PowerShell-Cmdlets-20">tag:google.com,2005:reader/item/49ade750a3c77e0a</id><category term="PowerShell" /><category term="Windows Azure" /><title type="html">Episode 60 - Introducing the Windows Azure Platform PowerShell Cmdlets 2.0</title><published>2011-09-30T16:00:00Z</published><updated>2011-09-30T16:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/z2TnSWaJENU/Episode-60-Introducing-the-Windows-Azure-Platform-PowerShell-Cmdlets-20" type="text/html" /><link rel="enclosure" href="http://video.ch9.ms/ch9/3f4e/8085005b-8e77-4f55-84ba-9f6b00d43f4e/Episode60PowerShellCmdlets_ch9.wmv" type="video/x-ms-wmv" length="254639091" /><summary xml:base="http://channel9.msdn.com/" type="html">&lt;p&gt;Join &lt;a href="http://www.wadewegner.com"&gt;Wade&lt;/a&gt; and &lt;a href="http://blog.smarx.com"&gt;Steve&lt;/a&gt; each week as they cover the Windows Azure Platform. You can follow and interact with the show at &lt;a href="http://twitter.com/cloudcovershow"&gt;@CloudCoverShow&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In this episode, &lt;a href="http://michaelwasham.com"&gt;Michael Washam&lt;/a&gt;, Technical Evangelist for Windows Azure, joins Steve and Wade to discuss the &lt;a href="http://wappowershell.codeplex.com/"&gt;Windows Azure Platform PowerShell Cmdlets&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In the news:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/windowsazure/archive/2011/09/29/now-available-windows-azure-platform-training-kit-september-2011-update-and-new-training-kit-web-installer-preview.aspx"&gt;Now Available: Windows Azure Platform Training Kit – September 2011 Update and New Training Kit Web Installer Preview&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.maartenballiauw.be/post/2011/09/23/NuGet-push-to-Windows-Azure.aspx"&gt;NuGet Push to Windows Azure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.smarx.com/posts/extension-methods-for-the-august-storage-features"&gt;Extension Methods for the August 2011 Windows Azure Storage Features&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.smarx.com/posts/some-updates-to-waz-cmd-ruby-command-line-tool-for-windows-azure"&gt;Some Updates to Waz-Cmd, a Ruby Command-Line Tool for Windows Azure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/hh472164.aspx"&gt;Windows Azure SDK 1.5 Known Issue: Compute Emulator Listen Port Unavailable&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/hh472165.aspx"&gt;Windows Azure SDK 1.5 Known Issue: Compute Emulator Fails to Start&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://michaelwasham.com/2011/09/16/announcing-the-release-of-windows-azure-platform-powershell-cmdlets-2-0/"&gt;Announcing the Release of the Windows Azure Platform PowerShell Cmdlets 2.0&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://channel9.msdn.com/Events/BUILD/BUILD2011/SAC-859T"&gt;BUILD Talk: Monitoring and Troubleshooting in Windows Azure&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Tweet to Michael at &lt;a href="http://twitter.com/mwashamms"&gt;@MWashamMS&lt;/a&gt;.&lt;/p&gt; &lt;img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&amp;amp;dcsuri=http://channel9.msdn.com/Feeds/RSS&amp;amp;WT.dl=0&amp;amp;WT.entryid=Entry:RSSView:8085005b8e774f5584ba9f6b00d43f4e"&gt;</summary><author><name>Steve Marx, Wade Wegner</name></author><source gr:stream-id="feed/http://on10.net/feeds/rss/"><id>tag:google.com,2005:reader/feed/http://on10.net/feeds/rss/</id><title type="html">Channel 9</title><link rel="alternate" href="http://channel9.msdn.com/" type="text/html" /></source><feedburner:origLink>http://channel9.msdn.com/Shows/Cloud+Cover/Episode-60-Introducing-the-Windows-Azure-Platform-PowerShell-Cmdlets-20</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434451237"><id gr:original-id="http://msdn.microsoft.com/magazine/0c8b68a8-48a9-482d-8414-5c28d38f9a44">tag:google.com,2005:reader/item/e4b9ef8b7a0a4544</id><title type="html">HTML5: Writing a Business-Oriented JavaScript Web Application</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/qydwq18eD7I/0c8b68a8-48a9-482d-8414-5c28d38f9a44" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;Microsoft sees HTML5 and JavaScript as key for Windows developers. To help you learn to write production-ready JavaScript, we walk you through creating a basic business application.</summary><author><name>Frank Prößdorf, Dariusz Parys</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/0c8b68a8-48a9-482d-8414-5c28d38f9a44</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434446693"><id gr:original-id="http://msdn.microsoft.com/magazine/01d9e626-2c0b-4ccf-9fd2-362f115eed8f">tag:google.com,2005:reader/item/24c1dfee775d27c2</id><title type="html">HTML5: Browser and Feature Detection</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/LXNg7PyGCBk/01d9e626-2c0b-4ccf-9fd2-362f115eed8f" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;If you’re building a Web site, you don’t just want it to look terrific today; you want it to dazzle for a long time to come. That means your site has to work not only in today’s browsers, but also in future versions. Tthis article presents tips and best practices to help you achieve this goal.</summary><author><name>Sascha P. Corti</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/01d9e626-2c0b-4ccf-9fd2-362f115eed8f</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434440917"><id gr:original-id="http://msdn.microsoft.com/magazine/f4250818-c70b-464e-af29-febdbda1638e">tag:google.com,2005:reader/item/6f9b6017a8f7f506</id><title type="html">F# Programming: Authoring an F#/C# VSIX Project Template</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/fJ2xZmROmCc/f4250818-c70b-464e-af29-febdbda1638e" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;Encourage reuse and cut out those repetitive, time-wasting setup chores by creating a Visual Studio Extension project template composed of a C# ASP.NET MVC 3 Web app and two F# libraries.</summary><author><name>Dan Mohl</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/f4250818-c70b-464e-af29-febdbda1638e</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434421499"><id gr:original-id="http://msdn.microsoft.com/magazine/a7cbe9e4-1be7-451d-850a-ea5d834fd1b6">tag:google.com,2005:reader/item/0e04ce54c5ff51be</id><title type="html">Asynchronous Programming: Async Performance: Understanding the Costs of Async and Await</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/Az0mixEtcT0/a7cbe9e4-1be7-451d-850a-ea5d834fd1b6" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;It’s easy to get started writing asynchronous methods in C# and Visual Basic, but there can be hidden performance costs. Stephen Toub explores the ins and outs of asynchronous methods to give you a solid understanding of how they’re implemented under the covers and show some of the more nuanced costs involved.</summary><author><name>Stephen Toub</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/a7cbe9e4-1be7-451d-850a-ea5d834fd1b6</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434416023"><id gr:original-id="http://msdn.microsoft.com/magazine/0d2fab91-52a5-4a14-b5a3-6065d73253c5">tag:google.com,2005:reader/item/240a53606826c2fc</id><title type="html">Asynchronous Programming: Pause and Play with Await</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/nCzoj7PKzDU/0d2fab91-52a5-4a14-b5a3-6065d73253c5" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;Asynchronous methods in the upcoming versions of Visual Basic and C# are a great way to get the callbacks out of your asynchronous programming. Mads Torgersen takes a closer look at what the new await keyword actually does, starting at the conceptual level and working down to the iron.</summary><author><name>Mads Torgersen</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/0d2fab91-52a5-4a14-b5a3-6065d73253c5</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434409152"><id gr:original-id="http://msdn.microsoft.com/magazine/f57c742a-0974-41bb-86eb-2057b57461ff">tag:google.com,2005:reader/item/887fb37a4ee5ea05</id><title type="html">Asynchronous Programming: Easier Asynchronous Programming with the New Visual Studio Async CTP</title><published>2011-09-26T00:00:00Z</published><updated>2011-09-26T00:00:00Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/TYA1yhBZGZ8/f57c742a-0974-41bb-86eb-2057b57461ff" type="text/html" /><summary xml:base="http://www.msdnmagazine.com/" type="html">October 2011&lt;br&gt;&lt;br&gt;There are many different techniques for achieving a responsive user interface in a program that performs high-latency operations, but the difficulty factor of doing so is high. The next version of C# and Visual Basic will include a new form of asynchronous control flow that avoids both the dangers of multithreading and the pain of writing callback methods.</summary><author><name>Eric Lippert</name></author><source gr:stream-id="feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue"><id>tag:google.com,2005:reader/feed/http://msdn.microsoft.com/en-us/magazine/rss/default.aspx?issue=tue</id><title type="html">MSDN Magazine RSS Feed:</title><link rel="alternate" href="http://www.msdnmagazine.com" type="text/html" /></source><feedburner:origLink>http://msdn.microsoft.com/magazine/f57c742a-0974-41bb-86eb-2057b57461ff</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434365170"><id gr:original-id="">tag:google.com,2005:reader/item/5d3dcfd902534350</id><title type="html">Windows Azure Tools for Microsoft Visual Studio 2010 1.5 (September 2011)</title><published>2011-10-01T01:59:25Z</published><updated>2011-10-01T01:59:25Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/tSSV1rfi2r0/details.aspx" type="text/html" /><summary xml:base="http://www.microsoft.com/downloads/" type="html">This page is intended for advanced manual installation of the Windows Azure Tools for Microsoft Visual Studio 2010. You can install everything you need for Windows Azure development using the Web Platform Installer here: http://go.microsoft.com/fwlink/?LinkID=156784&lt;div&gt;
&lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=5wyA5iJoU3w:R7lPKfkurug:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=yIl2AUoC8zA" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=5wyA5iJoU3w:R7lPKfkurug:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=dnMXMwOfBR0" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=5wyA5iJoU3w:R7lPKfkurug:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=5wyA5iJoU3w:R7lPKfkurug:F7zBnMyn0Lo" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=5wyA5iJoU3w:R7lPKfkurug:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=5wyA5iJoU3w:R7lPKfkurug:V_sGLiPBpWU" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/MicrosoftDownloadCenter/~4/5wyA5iJoU3w" height="1" width="1"&gt;</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml"><id>tag:google.com,2005:reader/feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml</id><title type="html">Microsoft Download Center</title><link rel="alternate" href="http://www.microsoft.com/downloads/" type="text/html" /></source><feedburner:origLink>http://feedproxy.google.com/~r/MicrosoftDownloadCenter/~3/5wyA5iJoU3w/details.aspx</feedburner:origLink></entry><entry gr:crawl-timestamp-msec="1317434344099"><id gr:original-id="">tag:google.com,2005:reader/item/bdef176038e62dfa</id><title type="html">Expression Design September 2011 Preview</title><published>2011-10-01T01:59:04Z</published><updated>2011-10-01T01:59:04Z</updated><link rel="alternate" href="http://feedproxy.google.com/~r/koistya/~3/VkeDY6Y0m-o/details.aspx" type="text/html" /><summary xml:base="http://www.microsoft.com/downloads/" type="html">Microsoft Expression Design September 2011 Preview provides new features, bug fixes, and stability enhancements for Expression Design 4.&lt;div&gt;
&lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=RujxcTEE37E:uiDZBS7viFs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=yIl2AUoC8zA" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=RujxcTEE37E:uiDZBS7viFs:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?d=dnMXMwOfBR0" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=RujxcTEE37E:uiDZBS7viFs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=RujxcTEE37E:uiDZBS7viFs:F7zBnMyn0Lo" border="0"&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?a=RujxcTEE37E:uiDZBS7viFs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/MicrosoftDownloadCenter?i=RujxcTEE37E:uiDZBS7viFs:V_sGLiPBpWU" border="0"&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/MicrosoftDownloadCenter/~4/RujxcTEE37E" height="1" width="1"&gt;</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml"><id>tag:google.com,2005:reader/feed/http://feeds.feedburner.com/MicrosoftDownloadCenter?format=xml</id><title type="html">Microsoft Download Center</title><link rel="alternate" href="http://www.microsoft.com/downloads/" type="text/html" /></source><feedburner:origLink>http://feedproxy.google.com/~r/MicrosoftDownloadCenter/~3/RujxcTEE37E/details.aspx</feedburner:origLink></entry></feed>

