<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Gregor&#039;s work related blog</title>
	<atom:link href="http://gregorsuttie.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gregorsuttie.com</link>
	<description>.net development and more</description>
	<lastBuildDate>Wed, 22 Feb 2012 09:38:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Host your RavendDB based MVC app on Appharbor by Gregor Suttie</title>
		<link>http://gregorsuttie.com/2012/02/21/host-your-ravenddb-based-mvc-app-on-appharbor/#comment-157</link>
		<dc:creator><![CDATA[Gregor Suttie]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 09:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1198#comment-157</guid>
		<description><![CDATA[Yeah sure you can do that - I put this into RavenController and would use this when I know I&#039;m going to be using Actions that will require a session, saves me from having the code you show in every controller]]></description>
		<content:encoded><![CDATA[<p>Yeah sure you can do that &#8211; I put this into RavenController and would use this when I know I&#8217;m going to be using Actions that will require a session, saves me from having the code you show in every controller</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host your RavendDB based MVC app on Appharbor by Yaakov Ellis (@Yaakov)</title>
		<link>http://gregorsuttie.com/2012/02/21/host-your-ravenddb-based-mvc-app-on-appharbor/#comment-156</link>
		<dc:creator><![CDATA[Yaakov Ellis (@Yaakov)]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 07:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1198#comment-156</guid>
		<description><![CDATA[Why should you initialize your RavenSession right away in OnActionExecuting? Wouldn&#039;t it be better to do something like this in the controller:

private IDocumentSession _ravenSession;
public IDocumentSession RavenSession {
  get { 
    if (_ravenSession == null) {
      _ravenSession = MvcApplication.Store.OpenSession();
    }
    return _ravenSession;
  }
}

That way you will open a new session automatically the first time that RavenSession is used, and you will not open one unnecessarily in Actions where it is never accessed?]]></description>
		<content:encoded><![CDATA[<p>Why should you initialize your RavenSession right away in OnActionExecuting? Wouldn&#8217;t it be better to do something like this in the controller:</p>
<p>private IDocumentSession _ravenSession;<br />
public IDocumentSession RavenSession {<br />
  get {<br />
    if (_ravenSession == null) {<br />
      _ravenSession = MvcApplication.Store.OpenSession();<br />
    }<br />
    return _ravenSession;<br />
  }<br />
}</p>
<p>That way you will open a new session automatically the first time that RavenSession is used, and you will not open one unnecessarily in Actions where it is never accessed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host your RavendDB based MVC app on Appharbor by Wilson Mead III (@Rangoric)</title>
		<link>http://gregorsuttie.com/2012/02/21/host-your-ravenddb-based-mvc-app-on-appharbor/#comment-155</link>
		<dc:creator><![CDATA[Wilson Mead III (@Rangoric)]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 02:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1198#comment-155</guid>
		<description><![CDATA[This is rather perfect timing, and quite complete as a starting point.]]></description>
		<content:encoded><![CDATA[<p>This is rather perfect timing, and quite complete as a starting point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host your RavendDB based MVC app on Appharbor by friism</title>
		<link>http://gregorsuttie.com/2012/02/21/host-your-ravenddb-based-mvc-app-on-appharbor/#comment-154</link>
		<dc:creator><![CDATA[friism]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 19:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1198#comment-154</guid>
		<description><![CDATA[Great post Gregor! Note that you don&#039;t have to manually change the connectionstring for deployment, AppHarbor will automatically override any connectionstring named &quot;RavenDB&quot; with the correct value.]]></description>
		<content:encoded><![CDATA[<p>Great post Gregor! Note that you don&#8217;t have to manually change the connectionstring for deployment, AppHarbor will automatically override any connectionstring named &#8220;RavenDB&#8221; with the correct value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host your MVC app in the Cloud with AppHarbor by Host your RavendDB based MVC app on appharbor &#171; Gregor&#039;s work related blog</title>
		<link>http://gregorsuttie.com/2012/02/01/host-your-mvc-app-in-the-cloud-with-appharbor/#comment-153</link>
		<dc:creator><![CDATA[Host your RavendDB based MVC app on appharbor &#171; Gregor&#039;s work related blog]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 19:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=988#comment-153</guid>
		<description><![CDATA[[...] If you need some help with doing this then check here. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] If you need some help with doing this then check here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Glencoe Scotland &#8211; road trip by El Bauldo</title>
		<link>http://gregorsuttie.com/2012/01/28/glencoe-scotland-road-trip/#comment-148</link>
		<dc:creator><![CDATA[El Bauldo]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 11:12:34 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=970#comment-148</guid>
		<description><![CDATA[Salut Gregoire

Nice pics. Pity you didn&#039;t take your camera the week before. The blogs looking good. I&#039;ll keep popping in to see if you guys are up to anything new.

Roberto]]></description>
		<content:encoded><![CDATA[<p>Salut Gregoire</p>
<p>Nice pics. Pity you didn&#8217;t take your camera the week before. The blogs looking good. I&#8217;ll keep popping in to see if you guys are up to anything new.</p>
<p>Roberto</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Book Review:- Dependency Injection in .Net by Java Tutorial</title>
		<link>http://gregorsuttie.com/2012/02/14/book-review-dependency-injection-in-net/#comment-147</link>
		<dc:creator><![CDATA[Java Tutorial]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 08:22:13 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=908#comment-147</guid>
		<description><![CDATA[Also see &lt;a href=&quot;http://extreme-java.com/what-is-dependency-injection/&quot; rel=&quot;nofollow&quot;&gt;Dependency Injection&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Also see <a href="http://extreme-java.com/what-is-dependency-injection/" rel="nofollow">Dependency Injection</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding RavenDB to an MVC application by Gregor Suttie</title>
		<link>http://gregorsuttie.com/2012/02/05/using-ravendb-in-a-mvc-application/#comment-139</link>
		<dc:creator><![CDATA[Gregor Suttie]]></dc:creator>
		<pubDate>Sun, 12 Feb 2012 14:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1091#comment-139</guid>
		<description><![CDATA[i will do, I plan to cover all of the options as well as the options for deploying.]]></description>
		<content:encoded><![CDATA[<p>i will do, I plan to cover all of the options as well as the options for deploying.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding RavenDB to an MVC application by Tim VanFosson (@tvanfosson)</title>
		<link>http://gregorsuttie.com/2012/02/05/using-ravendb-in-a-mvc-application/#comment-138</link>
		<dc:creator><![CDATA[Tim VanFosson (@tvanfosson)]]></dc:creator>
		<pubDate>Sun, 12 Feb 2012 14:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1091#comment-138</guid>
		<description><![CDATA[You might want to mention how to set it up if you don&#039;t want to use the embedded server.]]></description>
		<content:encoded><![CDATA[<p>You might want to mention how to set it up if you don&#8217;t want to use the embedded server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RavenDB Video Tutorials by RavenDB Series &#171; Gregor&#039;s work related blog</title>
		<link>http://gregorsuttie.com/2012/02/12/ravendb-video-tutorials/#comment-137</link>
		<dc:creator><![CDATA[RavenDB Series &#171; Gregor&#039;s work related blog]]></dc:creator>
		<pubDate>Sun, 12 Feb 2012 13:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://gregorsuttie.com/?p=1124#comment-137</guid>
		<description><![CDATA[[...] RavenDB Video Tutorials [...]]]></description>
		<content:encoded><![CDATA[<p>[...] RavenDB Video Tutorials [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

