<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Russell East's blog</title>
	<atom:link href="http://russelleast.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://russelleast.wordpress.com</link>
	<description>Just another developer on a rant</description>
	<lastBuildDate>Wed, 28 Oct 2009 03:20:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 4) &#8211; data access by ASP.NET MVC Archived Blog Posts, Page 1</title>
		<link>http://russelleast.wordpress.com/2009/10/21/implementing-an-architecture-with-asp-net-mvc-part-4-data-access/#comment-190</link>
		<dc:creator>ASP.NET MVC Archived Blog Posts, Page 1</dc:creator>
		<pubDate>Wed, 28 Oct 2009 03:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=274#comment-190</guid>
		<description>[...] to VoteImplementing an architecture with ASP.NET MVC (Part 4) - data access (10/20/2009)Tuesday, October 20, 2009 from russelleast.wordpress.comThis post is part of a series of posts about [...]</description>
		<content:encoded><![CDATA[<p>[...] to VoteImplementing an architecture with ASP.NET MVC (Part 4) &#8211; data access (10/20/2009)Tuesday, October 20, 2009 from russelleast.wordpress.comThis post is part of a series of posts about [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 4) &#8211; data access by Webmaster Crap &#187; Blog Archive &#187; Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230;</title>
		<link>http://russelleast.wordpress.com/2009/10/21/implementing-an-architecture-with-asp-net-mvc-part-4-data-access/#comment-186</link>
		<dc:creator>Webmaster Crap &#187; Blog Archive &#187; Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230;</dc:creator>
		<pubDate>Thu, 22 Oct 2009 22:34:17 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=274#comment-186</guid>
		<description>[...] Read the original:  Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Read the original:  Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 4) &#8211; data access by Implementing an architecture with ASP.NET MVC (Part 4) – data … Scripts Rss</title>
		<link>http://russelleast.wordpress.com/2009/10/21/implementing-an-architecture-with-asp-net-mvc-part-4-data-access/#comment-185</link>
		<dc:creator>Implementing an architecture with ASP.NET MVC (Part 4) – data … Scripts Rss</dc:creator>
		<pubDate>Thu, 22 Oct 2009 21:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=274#comment-185</guid>
		<description>[...] here: Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230;          By admin &#124; category: asp.net script &#124; tags: asp, base64, classes, css, database-migration, [...]</description>
		<content:encoded><![CDATA[<p>[...] here: Implementing an architecture with ASP.NET MVC (Part 4) – data &#8230;          By admin | category: asp.net script | tags: asp, base64, classes, css, database-migration, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC &#8211; Creating an application with a defined architecture by russelleast</title>
		<link>http://russelleast.wordpress.com/2009/05/05/aspnet-mvc-creating-an-application-with-a-defined-architecture/#comment-184</link>
		<dc:creator>russelleast</dc:creator>
		<pubDate>Thu, 22 Oct 2009 05:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=234#comment-184</guid>
		<description>Hello  Matt, all apologies i have missed the code for the IModule interface. I am going to amend the post to include is:

&lt;p&gt;
&lt;pre&gt;
using Microsoft.Practices.Unity;

namespace Web.Container.Interfaces
{
    public interface IModule
    {
        void Configure(IUnityContainer container);
    }
}
&lt;/pre&gt;
&lt;/p&gt;

I am also good to email you my solution. Unfortunately wordpress will not allow me to upload zip files so they can&#039;t be downloaded.</description>
		<content:encoded><![CDATA[<p>Hello  Matt, all apologies i have missed the code for the IModule interface. I am going to amend the post to include is:</p>
<p><pre>
using Microsoft.Practices.Unity;

namespace Web.Container.Interfaces
{
    public interface IModule
    {
        void Configure(IUnityContainer container);
    }
}
</pre>
</p>
<p>I am also good to email you my solution. Unfortunately wordpress will not allow me to upload zip files so they can&#8217;t be downloaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC &#8211; Creating an application with a defined architecture by Matt</title>
		<link>http://russelleast.wordpress.com/2009/05/05/aspnet-mvc-creating-an-application-with-a-defined-architecture/#comment-183</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 21 Oct 2009 23:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=234#comment-183</guid>
		<description>Hi Russel,

Thanks for the very informative series of posts! I&#039;m trying to follow it by creating the project in Visual Studio but i am stuck on the presentation processes module:

public class PresentationProcessesModule : IModule

What is IModule and how can I reference it in the project? 

Cheers</description>
		<content:encoded><![CDATA[<p>Hi Russel,</p>
<p>Thanks for the very informative series of posts! I&#8217;m trying to follow it by creating the project in Visual Studio but i am stuck on the presentation processes module:</p>
<p>public class PresentationProcessesModule : IModule</p>
<p>What is IModule and how can I reference it in the project? </p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 4) &#8211; data access by russelleast</title>
		<link>http://russelleast.wordpress.com/2009/10/21/implementing-an-architecture-with-asp-net-mvc-part-4-data-access/#comment-182</link>
		<dc:creator>russelleast</dc:creator>
		<pubDate>Wed, 21 Oct 2009 09:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=274#comment-182</guid>
		<description>Ted, I have not came across perst, I will have a play. thanks</description>
		<content:encoded><![CDATA[<p>Ted, I have not came across perst, I will have a play. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 4) &#8211; data access by Ted Kenney</title>
		<link>http://russelleast.wordpress.com/2009/10/21/implementing-an-architecture-with-asp-net-mvc-part-4-data-access/#comment-181</link>
		<dc:creator>Ted Kenney</dc:creator>
		<pubDate>Wed, 21 Oct 2009 06:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=274#comment-181</guid>
		<description>Are you familiar with Perst?

It is another object-oriented embedded database for .NET that is &quot;Really easy to use, requires a tiny amount of code... supports LINQ and also has other ways to query the database...&quot;.

Find out about the Perst embedded database - http://www.mcobject.com/perst.</description>
		<content:encoded><![CDATA[<p>Are you familiar with Perst?</p>
<p>It is another object-oriented embedded database for .NET that is &#8220;Really easy to use, requires a tiny amount of code&#8230; supports LINQ and also has other ways to query the database&#8230;&#8221;.</p>
<p>Find out about the Perst embedded database &#8211; <a href="http://www.mcobject.com/perst" rel="nofollow">http://www.mcobject.com/perst</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing an architecture with ASP.NET MVC (Part 3) &#8211; The business layer by ASP.NET MVC Archived Blog Posts, Page 1</title>
		<link>http://russelleast.wordpress.com/2009/08/09/implementing-an-architecture-with-asp-net-mvc-part-3-the-business-layer/#comment-180</link>
		<dc:creator>ASP.NET MVC Archived Blog Posts, Page 1</dc:creator>
		<pubDate>Wed, 21 Oct 2009 04:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=264#comment-180</guid>
		<description>[...] to VoteImplementing an architecture with ASP.NET MVC (Part 3) – The... (10/17/2009)Saturday, October 17, 2009 from russelleast.wordpress.comThis post follows on from my previous post [...]</description>
		<content:encoded><![CDATA[<p>[...] to VoteImplementing an architecture with ASP.NET MVC (Part 3) – The&#8230; (10/17/2009)Saturday, October 17, 2009 from russelleast.wordpress.comThis post follows on from my previous post [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC: A utility for testing secured Actions by russelleast</title>
		<link>http://russelleast.wordpress.com/2009/02/04/aspnet-mvc-a-utility-for-testing-secured-actions/#comment-179</link>
		<dc:creator>russelleast</dc:creator>
		<pubDate>Mon, 19 Oct 2009 06:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=192#comment-179</guid>
		<description>ms440. thanks for the kind comment.</description>
		<content:encoded><![CDATA[<p>ms440. thanks for the kind comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC: A utility for testing secured Actions by ms440</title>
		<link>http://russelleast.wordpress.com/2009/02/04/aspnet-mvc-a-utility-for-testing-secured-actions/#comment-178</link>
		<dc:creator>ms440</dc:creator>
		<pubDate>Mon, 19 Oct 2009 03:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://russelleast.wordpress.com/?p=192#comment-178</guid>
		<description>Absolutely beautiful!

Why didn&#039;t I read this back in Feb?
Great thanks for the excellent and beautiful code.</description>
		<content:encoded><![CDATA[<p>Absolutely beautiful!</p>
<p>Why didn&#8217;t I read this back in Feb?<br />
Great thanks for the excellent and beautiful code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
