<?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/"
		>
<channel>
	<title>Comments on: How-To: Using the N* stack, part 1</title>
	<atom:link href="http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/</link>
	<description>I&#039;m just here for the code</description>
	<lastBuildDate>Mon, 06 Sep 2010 12:21:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-258</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 02 Sep 2009 10:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-258</guid>
		<description>@Dave - In part 6, we use Ninject&#039;s AutoControllerModule to register all of our controllers with the Ninject Kernel. You specify the assembly in the constructor. 
Then, to get ASP.NET MVC to ask Ninject for the controllers, you have two options. First, you can use ControllerBuilder.Current.SetControllerFactory to point it at a Ninject controller factory. The second option, which I prefer, is to change your app (in Global.asax) to inherit from Ninject.Framework.Mvc.NinjectHttpApplication instead System.Web.HttpApplication.</description>
		<content:encoded><![CDATA[<p>@Dave &#8211; In part 6, we use Ninject&#8217;s AutoControllerModule to register all of our controllers with the Ninject Kernel. You specify the assembly in the constructor.<br />
Then, to get ASP.NET MVC to ask Ninject for the controllers, you have two options. First, you can use ControllerBuilder.Current.SetControllerFactory to point it at a Ninject controller factory. The second option, which I prefer, is to change your app (in Global.asax) to inherit from Ninject.Framework.Mvc.NinjectHttpApplication instead System.Web.HttpApplication.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Hanna</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-250</link>
		<dc:creator>Dave Hanna</dc:creator>
		<pubDate>Tue, 01 Sep 2009 22:27:14 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-250</guid>
		<description>Jason,

Disregard the above question. Stupid mistake - I hadn&#039;t included the Controllers project in the References  for the Web project.  When you do that, it happens automatically.</description>
		<content:encoded><![CDATA[<p>Jason,</p>
<p>Disregard the above question. Stupid mistake &#8211; I hadn&#8217;t included the Controllers project in the References  for the Web project.  When you do that, it happens automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Hanna</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-249</link>
		<dc:creator>Dave Hanna</dc:creator>
		<pubDate>Tue, 01 Sep 2009 21:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-249</guid>
		<description>Jason,

I know I&#039;m getting ahead of you here, but when you create the Controllers as a separate project, rather than leaving them in the Controllers folder underneath the .Web project, what&#039;s the magic incantation to get the MVC framework to look for your controllers in the Controllers project space?  I&#039;m sure there is one, because the MVC documentation says it looks for them in the Controllers folder BY DEFAULT, but I can&#039;t find anywhere that it says how to change the defaults (plus I know you wouldn&#039;t have put them in a separate project if there WASN&#039;T a way to reach them!)</description>
		<content:encoded><![CDATA[<p>Jason,</p>
<p>I know I&#8217;m getting ahead of you here, but when you create the Controllers as a separate project, rather than leaving them in the Controllers folder underneath the .Web project, what&#8217;s the magic incantation to get the MVC framework to look for your controllers in the Controllers project space?  I&#8217;m sure there is one, because the MVC documentation says it looks for them in the Controllers folder BY DEFAULT, but I can&#8217;t find anywhere that it says how to change the defaults (plus I know you wouldn&#8217;t have put them in a separate project if there WASN&#8217;T a way to reach them!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Part 6: Ninject and MVC or How to be a Web Ninja - NHibernate blog - NHibernate Forge</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-166</link>
		<dc:creator>Part 6: Ninject and MVC or How to be a Web Ninja - NHibernate blog - NHibernate Forge</dc:creator>
		<pubDate>Sat, 29 Aug 2009 05:35:06 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-166</guid>
		<description>[...] you’re new here, you can check out Part 1, Part 2, Part 3, Part 4, and Part 5 to catch up. Grab the latest source from the end of Part [...]</description>
		<content:encoded><![CDATA[<p>[...] you’re new here, you can check out Part 1, Part 2, Part 3, Part 4, and Part 5 to catch up. Grab the latest source from the end of Part [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Part 6: Ninject and MVC or How to be a Web Ninja &#171; BASICly everything</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-165</link>
		<dc:creator>Part 6: Ninject and MVC or How to be a Web Ninja &#171; BASICly everything</dc:creator>
		<pubDate>Sat, 29 Aug 2009 05:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-165</guid>
		<description>[...] you’re new here, you can check out Part 1, Part 2, Part 3, Part 4, and Part 5 to catch up. Grab the latest source from the end of Part [...]</description>
		<content:encoded><![CDATA[<p>[...] you’re new here, you can check out Part 1, Part 2, Part 3, Part 4, and Part 5 to catch up. Grab the latest source from the end of Part [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Part 5: Fixing the Broken Stuff - NHibernate blog - NHibernate Forge</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-119</link>
		<dc:creator>Part 5: Fixing the Broken Stuff - NHibernate blog - NHibernate Forge</dc:creator>
		<pubDate>Sat, 22 Aug 2009 14:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-119</guid>
		<description>[...] Part 1 – Solution setup [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 1 – Solution setup [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Part 5: Fixing the Broken Stuff &#171; BASICly everything</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-116</link>
		<dc:creator>Part 5: Fixing the Broken Stuff &#171; BASICly everything</dc:creator>
		<pubDate>Sat, 22 Aug 2009 02:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-116</guid>
		<description>[...] Part 1 – Solution setup [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 1 – Solution setup [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kurt schroeder</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-114</link>
		<dc:creator>kurt schroeder</dc:creator>
		<pubDate>Fri, 21 Aug 2009 13:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-114</guid>
		<description>Jason, I&#039;m enjoying this series. Thanks. A quick note on fluent NHibernate: there have been some changes as i&#039;m sure you know and this is just a reminder to all to download or branch the source as often as possible. WithLengthOf is now Length and there are other language changes. The changes are self explanatory meaning its a minor issue to adjust your tutorial.

Thanks Again
KES</description>
		<content:encoded><![CDATA[<p>Jason, I&#8217;m enjoying this series. Thanks. A quick note on fluent NHibernate: there have been some changes as i&#8217;m sure you know and this is just a reminder to all to download or branch the source as often as possible. WithLengthOf is now Length and there are other language changes. The changes are self explanatory meaning its a minor issue to adjust your tutorial.</p>
<p>Thanks Again<br />
KES</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How-To: Using the N* Stack, part 4 &#171; BASICly everything</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-55</link>
		<dc:creator>How-To: Using the N* Stack, part 4 &#171; BASICly everything</dc:creator>
		<pubDate>Sun, 16 Aug 2009 09:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-55</guid>
		<description>[...] Part 1 – Setting up the Visual Studio solution [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 1 – Setting up the Visual Studio solution [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How-To: Using the N* Stack, part 3 - NHibernate blog - NHibernate Forge</title>
		<link>http://jasondentler.com/blog/2009/08/how-to-using-the-n-stack-part-1/comment-page-1/#comment-45</link>
		<dc:creator>How-To: Using the N* Stack, part 3 - NHibernate blog - NHibernate Forge</dc:creator>
		<pubDate>Thu, 13 Aug 2009 23:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://jasondentler.com/blog/?p=114#comment-45</guid>
		<description>[...] is the third installment in my series. In part 1, we downloaded our libraries and set up our solution. In part 2, we built our model. In this part, [...]</description>
		<content:encoded><![CDATA[<p>[...] is the third installment in my series. In part 1, we downloaded our libraries and set up our solution. In part 2, we built our model. In this part, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
