<?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: Linq to NHibernate in 10 minutes</title>
	<atom:link href="http://mhinze.com/linq-to-nhibernate-in-10-minutes/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/</link>
	<description>Matt Hinze, learning in public</description>
	<lastBuildDate>Thu, 18 Mar 2010 13:07:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mohsen</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-394</link>
		<dc:creator>mohsen</dc:creator>
		<pubDate>Thu, 13 Aug 2009 20:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-394</guid>
		<description>can u give me username and password for connecting to http://codecampserver.googlecode.com/svn/trunk/ ?</description>
		<content:encoded><![CDATA[<p>can u give me username and password for connecting to <a href="http://codecampserver.googlecode.com/svn/trunk/" rel="nofollow">http://codecampserver.googlecode.com/svn/trunk/</a> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kjempekjekt.com &#187; Blog Archive &#187; Fem vekttall NHibernate</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-234</link>
		<dc:creator>kjempekjekt.com &#187; Blog Archive &#187; Fem vekttall NHibernate</dc:creator>
		<pubDate>Sun, 11 Jan 2009 18:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-234</guid>
		<description>[...] Linq to NHibernate in 10 minutes [...]</description>
		<content:encoded><![CDATA[<p>[...] Linq to NHibernate in 10 minutes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: So you want to learn NHibernate? (or, NHibernate Hyperlink Acupuncture) &#124; The Freak Parade</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-78</link>
		<dc:creator>So you want to learn NHibernate? (or, NHibernate Hyperlink Acupuncture) &#124; The Freak Parade</dc:creator>
		<pubDate>Fri, 08 Aug 2008 19:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-78</guid>
		<description>[...] &amp; LINQ to NHibernate Linq to NHibernate in 10 Minutes Linq to NHibernate Kyle Baley - Trying out Linq to NHibernate My NHibernate 2.0 Supa&#8217; Layer [...]</description>
		<content:encoded><![CDATA[<p>[...] &amp; LINQ to NHibernate Linq to NHibernate in 10 Minutes Linq to NHibernate Kyle Baley &#8211; Trying out Linq to NHibernate My NHibernate 2.0 Supa&#8217; Layer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Webb</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-62</link>
		<dc:creator>Phil Webb</dc:creator>
		<pubDate>Sat, 26 Jul 2008 09:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-62</guid>
		<description>OOPS the pasted code has some stuff gone missing - probably the matching angle brackets.

The return from the second function needs to be:

    &lt;code&gt;return query.OrderByDescending(conference =&gt; conference.EndDate).First();&lt;code&gt;

replacing:

    &lt;code&gt;query.OrderByDescending(conference =&gt; conference.EndDate);
    return query.First();&lt;code&gt;

Lets see how that goes</description>
		<content:encoded><![CDATA[<p>OOPS the pasted code has some stuff gone missing &#8211; probably the matching angle brackets.</p>
<p>The return from the second function needs to be:</p>
<p>    <code>return query.OrderByDescending(conference =&gt; conference.EndDate).First();</code><code></p>
<p>replacing:</p>
<p>    </code><code>query.OrderByDescending(conference =&gt; conference.EndDate);<br />
    return query.First();</code><code></p>
<p>Lets see how that goes</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Webb</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-61</link>
		<dc:creator>Phil Webb</dc:creator>
		<pubDate>Sat, 26 Jul 2008 09:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-61</guid>
		<description>public Conference GetMostRecentConference(DateTime date)
{
    ISession session = getSession();
    var query = from conference in session.Linq()
            where conference.EndDate  conference.EndDate);
    return query.First();
}

The above doen&#039;t work as expected.    It returns 2004 - from conferencerepositorytester.

Actually needs the following:

        public Conference GetMostRecentConference(DateTime date)
        {
            ISession session = getSession();
            var query = from conference in session.Linq()
                        where conference.EndDate  conference.EndDate).First();
        }

This returns 2005.   Subtle difference that has burnt me before.</description>
		<content:encoded><![CDATA[<p>public Conference GetMostRecentConference(DateTime date)<br />
{<br />
    ISession session = getSession();<br />
    var query = from conference in session.Linq()<br />
            where conference.EndDate  conference.EndDate);<br />
    return query.First();<br />
}</p>
<p>The above doen&#8217;t work as expected.    It returns 2004 &#8211; from conferencerepositorytester.</p>
<p>Actually needs the following:</p>
<p>        public Conference GetMostRecentConference(DateTime date)<br />
        {<br />
            ISession session = getSession();<br />
            var query = from conference in session.Linq()<br />
                        where conference.EndDate  conference.EndDate).First();<br />
        }</p>
<p>This returns 2005.   Subtle difference that has burnt me before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - July 23, 2008 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-59</link>
		<dc:creator>Dew Drop - July 23, 2008 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Wed, 23 Jul 2008 13:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-59</guid>
		<description>[...] LINQ to NHibernate in 10 Minutes (Matt Hinze) [...]</description>
		<content:encoded><![CDATA[<p>[...] LINQ to NHibernate in 10 Minutes (Matt Hinze) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reflective Perspective - Chris Alcock &#187; The Morning Brew #142</title>
		<link>http://mhinze.com/linq-to-nhibernate-in-10-minutes/comment-page-1/#comment-58</link>
		<dc:creator>Reflective Perspective - Chris Alcock &#187; The Morning Brew #142</dc:creator>
		<pubDate>Wed, 23 Jul 2008 07:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/?p=52#comment-58</guid>
		<description>[...] Linq to NHibernate in 10 minutes - Matt Hinze examines Linq to NHibernate in the CodeCampServer project. [...]</description>
		<content:encoded><![CDATA[<p>[...] Linq to NHibernate in 10 minutes &#8211; Matt Hinze examines Linq to NHibernate in the CodeCampServer project. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
