<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KarlZ &#187; VS 2010</title>
	<atom:link href="http://joyofexcellence.com/blog/index.php/tag/vs-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://joyofexcellence.com/blog</link>
	<description>As a Software Development Director I still try to stay on top of Microsoft technologies by using some personal projects... And I follow some of my footsteps here.</description>
	<lastBuildDate>Thu, 02 Sep 2010 17:14:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Unit Testing a Very Simple ViewResult in MVC</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/05/29/unit-testing-a-very-simple-viewresult-in-mvc/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/05/29/unit-testing-a-very-simple-viewresult-in-mvc/#comments</comments>
		<pubDate>Sun, 30 May 2010 01:17:57 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/05/29/unit-testing-a-very-simple-viewresult-in-mvc/</guid>
		<description><![CDATA[Technorati Tags: Unit Testing,MVC,VS 2010
I have a view that really only provides content, is there a quick way to test that it exists? What’s the Assert?
There’s really not much to unit test if you have a page that has only HTML in a MVC (Model-View-Controller) project. And to some extent, if you had a test [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/05/29/unit-testing-a-very-simple-viewresult-in-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit Test Authorize Attribute</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/04/25/unit-test-authorize-attribute/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/04/25/unit-test-authorize-attribute/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 17:24:40 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/04/25/unit-test-authorize-attribute/</guid>
		<description><![CDATA[Technorati Tags: Unit Testing,ASP.NET,MVC,VS 2010
Story: I want to write a unit test to ensure that the Authorize attribute is applied to a controller ActionResult or ViewResult so that security is tested.
Here is the test:


Unit Test


[TestMethod]
public void PreviousSiteUserConversion_Authorization_Attributes_Have_Been_Applied()
{
    // Arrange
    MethodInfo varietalMethod = typeof(AdminController).GetMethod(&#34;PreviousSiteUserConversion&#34;, new Type[] { });
&#160;
    // Act
    var attributes = varietalMethod.GetCustomAttributes(typeof(AuthorizeAttribute), true);
&#160;
    // Assert
    Assert.IsNotNull(attributes);
    Assert.AreEqual(1, attributes.Length);
    var authAttribute = (AuthorizeAttribute)attributes[0];
    string[] [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/04/25/unit-test-authorize-attribute/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Impressed with CrystalTech for .NET 4.0</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/04/24/impressed-with-crystaltech-for-net-4-0/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/04/24/impressed-with-crystaltech-for-net-4-0/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 16:26:21 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[.NET 4.0]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/04/24/impressed-with-crystaltech-for-net-4-0/</guid>
		<description><![CDATA[Technorati Tags: .NET 4.0,Hosting,ASP.NET
I’ve used CrystalTech for years. They seemed to be falling behind a bit when I started to work with the MVC (Model-View-Controller) pattern. That works MUCH better with IIS 7 than with IIS 6, but CrystalTech only had IIS 6 servers.
That’s all changed!
I now have no excuses for not upgrading my sites [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/04/24/impressed-with-crystaltech-for-net-4-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MVC &#8211; Upcoming Series</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/03/01/mvc-upcoming-series/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/03/01/mvc-upcoming-series/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 01:06:10 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/03/01/mvc-upcoming-series/</guid>
		<description><![CDATA[Technorati Tags: MVC,VS 2010
I’ve been playing with Microsoft’s ASP.NET MVC (Model-View-Controller) application on and off for about a year now. It’s been moving at such a fast pace that it seemed I was always starting over with another install – CTPs, V1 Visual Studio 2008, previews for Visual Studio 2010… And now I’m currently on [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/03/01/mvc-upcoming-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Check for MaxLength in Entity Framework</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/02/13/error-check-for-maxlength-in-entity-framework/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/02/13/error-check-for-maxlength-in-entity-framework/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 17:50:03 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[EF]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/02/13/error-check-for-maxlength-in-entity-framework/</guid>
		<description><![CDATA[Technorati Tags: EF,MVC,VS 2010
HEADLINE: edmProperty.TypeUsage.Facets[“MaxLength”].Value comes in handy.
I don’t make a habit of making a post when someone else has done some work… I might point it out, and in that spirit here is the post that finally sent me in the right direction: http://soci.hu/blog/. However, the post is not in English (fortunately, C# is [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/02/13/error-check-for-maxlength-in-entity-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing the Version for an MVC App</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/02/06/showing-the-version-for-an-mvc-app/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/02/06/showing-the-version-for-an-mvc-app/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:50:35 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/02/06/showing-the-version-for-an-mvc-app/</guid>
		<description><![CDATA[Technorati Tags: MVC,ASP.NET,VS 2010
The primary MVC (Model-View-Controller) application that I’m working on is called KarlZMvc resulting in a dll called KarlZMvc.dll. To get the version output on my Site.Master page I need to include the following line:


Code Snippet


&#60;%= typeof(KarlZMvc.MvcApplication).Assembly.GetName().Version.ToString() %&#62;



I tried all sorts of combinations with the GetExecutingAssembly, or calling, etc. But none seemed to [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/02/06/showing-the-version-for-an-mvc-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Comments for Entity Framework</title>
		<link>http://joyofexcellence.com/blog/index.php/2010/01/16/xml-comments-for-entity-framework/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2010/01/16/xml-comments-for-entity-framework/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 16:59:54 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[EF]]></category>
		<category><![CDATA[Sandcastle]]></category>
		<category><![CDATA[SHFB]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2010/01/16/xml-comments-for-entity-framework/</guid>
		<description><![CDATA[Technorati Tags: EF,Sandcastle,SHFB,VS 2010
HEADLINE: If I use the Entity Framework (Self Tracking Entities or EntityObjects) templates, how can I add XML Comments so that I can use Sandcastle and Sandcastle Help File Builder to generate the documentation for my libraries? Is there a way to modify the T4 templates so that I can access the [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2010/01/16/xml-comments-for-entity-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saturday Night Wrestling with MVC</title>
		<link>http://joyofexcellence.com/blog/index.php/2009/06/27/saturday-night-wrestling-with-mvc/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2009/06/27/saturday-night-wrestling-with-mvc/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 01:16:06 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[EF]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2009/06/27/saturday-night-wrestling-with-mvc/</guid>
		<description><![CDATA[Ok&#8230; It wasn&#8217;t really that bad, but it did take some effort. Here was my objective: Now that MVC (ASP.NET Model-View-Controller) 1.1 has been released (not sure how I missed that) to work with Visual Studio 2010 and .NET 4.0 migrate my evolving website to use the .NET 4.0 beta.

I was able to get it [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2009/06/27/saturday-night-wrestling-with-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memorial Day Weekend 2009</title>
		<link>http://joyofexcellence.com/blog/index.php/2009/05/25/memorial-day-weekend-2009/</link>
		<comments>http://joyofexcellence.com/blog/index.php/2009/05/25/memorial-day-weekend-2009/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:07:29 +0000</pubDate>
		<dc:creator>karlz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[VS 2010]]></category>

		<guid isPermaLink="false">http://joyofexcellence.com/blog/index.php/2009/05/25/memorial-day-weekend-2009/</guid>
		<description><![CDATA[I&#8217;ve actually been playing with Visual Studio 2010 Beta 1 this weekend. I finally have a Team Foundation Server setup, some code written, a continuous integration build going, and have created some work items.

Since ASP.NET MVC (Model View Controller) was not shipped with Beta 1 I couldn&#8217;t work on my website. So to experiment some [...]]]></description>
		<wfw:commentRss>http://joyofexcellence.com/blog/index.php/2009/05/25/memorial-day-weekend-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
