<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>FluentNHibernate.Search</title><link>http://fnhsearch.codeplex.com/project/feeds/rss</link><description>A Fluent NHibernate.Search Attributes-Less mapping interface for NHibernate provider implementation of Lucene.NET.</description><item><title>Source code checked in, #55578</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/changes/55578</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Mon, 26 Jul 2010 20:06:06 GMT</pubDate><guid isPermaLink="false">Source code checked in, #55578 20100726080606P</guid></item><item><title>Updated Wiki: Home</title><link>http://fnhsearch.codeplex.com/wikipage?version=15</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;PROJECT MOVED TO &lt;a href="http://github.com/trullock/Fluent-NHibernate-Search" class="externalLink"&gt;GITHUB&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;br /&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Fluent NHibernate.Search Attributes-Less mapping interface for NHibernate provider implementation of Lucene.NET.&lt;br /&gt;&lt;br /&gt;Current source code works against the following dependencies :&lt;br /&gt;&lt;br /&gt;NHibernate : &lt;b&gt;2.1.2.4000&lt;/b&gt;&lt;br /&gt;NHibernate.Search : &lt;b&gt;Compiled from trunk against Lucene.NET 2.9.1.2&lt;/b&gt;&lt;br /&gt;Lucene.NET : &lt;b&gt;2.9.1.2&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Project Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.3 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.2 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Simple Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; BookSearchMap : DocumentMap&amp;lt;Book&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; BookSearchMap()
        {
            Id(p =&amp;gt; p.BookId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Book&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Title)
                .Store().Yes()
                .Index().Tokenized();
            Map(x =&amp;gt; x.Description)
                .Store().Yes()
                .Index().Tokenized();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Embedded Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Getting Started&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Create Entity Mappings Classes :&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Create NHibernate.Search Mapping Factory&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; LibrarySearchMapping : SearchMapping
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; LibrarySearchMapping()
        {
            AddAssembly(Assembly.GetExecutingAssembly());

            AssertIsValid();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
            Configuration nhcfg = FluentSearch.Configure()
                .DefaultAnalyzer().Standard()
                .DirectoryProvider().FSDirectory()
                .IndexBase(&lt;span style="color:#A31515;"&gt;&amp;quot;~/Index&amp;quot;&lt;/span&gt;)
                .IndexingStrategy().Event()
                .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;()
                .BuildConfiguration();
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently atop FluentNHibernate&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    Fluently.Configure()
        .Database(SQLiteConfiguration.Standard.InMemory())
        .Search(s =&amp;gt; s.DefaultAnalyzer().Standard()
                                 .DirectoryProvider().RAMDirectory()
                                 .IndexingStrategy().Event()
                                 .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;())
        .BuildConfiguration()
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>inetux</author><pubDate>Mon, 21 Jun 2010 07:36:43 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100621073643A</guid></item><item><title>Updated Wiki: Home</title><link>http://fnhsearch.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Fluent NHibernate.Search Attributes-Less mapping interface for NHibernate provider implementation of Lucene.NET.&lt;br /&gt;&lt;br /&gt;Current source code works against the following dependencies :&lt;br /&gt;&lt;br /&gt;NHibernate : &lt;b&gt;2.1.2.4000&lt;/b&gt;&lt;br /&gt;NHibernate.Search : &lt;b&gt;Compiled from trunk against Lucene.NET 2.9.1.2&lt;/b&gt;&lt;br /&gt;Lucene.NET : &lt;b&gt;2.9.1.2&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Project Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.3 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.2 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Simple Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; BookSearchMap : DocumentMap&amp;lt;Book&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; BookSearchMap()
        {
            Id(p =&amp;gt; p.BookId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Book&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Title)
                .Store().Yes()
                .Index().Tokenized();
            Map(x =&amp;gt; x.Description)
                .Store().Yes()
                .Index().Tokenized();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Embedded Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Getting Started&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Create Entity Mappings Classes :&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Create NHibernate.Search Mapping Factory&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; LibrarySearchMapping : SearchMapping
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; LibrarySearchMapping()
        {
            AddAssembly(Assembly.GetExecutingAssembly());

            AssertIsValid();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
            Configuration nhcfg = FluentSearch.Configure()
                .DefaultAnalyzer().Standard()
                .DirectoryProvider().FSDirectory()
                .IndexBase(&lt;span style="color:#A31515;"&gt;&amp;quot;~/Index&amp;quot;&lt;/span&gt;)
                .IndexingStrategy().Event()
                .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;()
                .BuildConfiguration();
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently atop FluentNHibernate&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    Fluently.Configure()
        .Database(SQLiteConfiguration.Standard.InMemory())
        .Search(s =&amp;gt; s.DefaultAnalyzer().Standard()
                                 .DirectoryProvider().RAMDirectory()
                                 .IndexingStrategy().Event()
                                 .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;())
        .BuildConfiguration()
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>trullock</author><pubDate>Fri, 12 Mar 2010 00:07:27 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100312120727A</guid></item><item><title>Updated Wiki: Home</title><link>http://fnhsearch.codeplex.com/wikipage?version=13</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Fluent NHibernate.Search Attributes-Less mapping interface for NHibernate provider implementation of Lucene.NET.&lt;br /&gt;&lt;br /&gt;Current source code works against the following dependencies :&lt;br /&gt;&lt;br /&gt;NHibernate : &lt;b&gt;2.1.2.4000&lt;/b&gt;&lt;br /&gt;NHibernate.Search : &lt;b&gt;Compiled from trunk against Lucene.NET 2.9.1.2&lt;/b&gt;&lt;br /&gt;Lucene.NET : &lt;b&gt;2.9.1.2&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Project Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/05/Introducing-FluentNhibernateSearch-Mapping-Interface.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.3 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/08/FluentNHibernarteSearch-03-Beta-Released-Now-Support-Fluent-XML-Less-Configuration.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;0.2 Beta Announcement&lt;/b&gt;&lt;br /&gt;&lt;a href="http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx" class="externalLink"&gt;http://blog.sb2.fr/post/2010/03/07/FluentNHibernarteSearch-02-Beta-Released.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Simple Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; BookSearchMap : DocumentMap&amp;lt;Book&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; BookSearchMap()
        {
            Id(p =&amp;gt; p.BookId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Book&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Title)
                .Store().Yes()
                .Index().Tokenized();
            Map(x =&amp;gt; x.Description)
                .Store().Yes()
                .Index().Tokenized();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Embedded Mapping Sample&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Getting Started&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Create Entity Mappings Classes :&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; AuthorSearchMap : DocumentMap&amp;lt;Author&amp;gt;
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; AuthorSearchMap()
        {
            Id(p =&amp;gt; p.AuthorId).Bridge().Guid();
            Name(&lt;span style="color:#A31515;"&gt;&amp;quot;Author&amp;quot;&lt;/span&gt;);

            Map(x =&amp;gt; x.Name)
                .Store().Yes()
                .Index().Tokenized();

            Embedded(x =&amp;gt; x.Books).AsCollection();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Create NHibernate.Search Mapping Factory&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;class&lt;/span&gt; LibrarySearchMapping : SearchMapping
    {
        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; LibrarySearchMapping()
        {
            AddAssembly(Assembly.GetExecutingAssembly());

            AssertIsValid();
        }
    }
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
            Configuration nhcfg = FluentSearch.Configure()
                .DefaultAnalyzer().Standard()
                .DirectoryProvider().FSDirectory()
                .IndexBase(&lt;span style="color:#A31515;"&gt;&amp;quot;~/Index&amp;quot;&lt;/span&gt;)
                .IndexingStrategy().Event()
                .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;()
                .BuildConfiguration();
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;Configure NHibernate.Search Fluently atop FluentNHibernate&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    Fluently.Configure(fnhscfg)
        .Database(SQLiteConfiguration.Standard.InMemory())
        .Search(s =&amp;gt; s.DefaultAnalyzer().Standard()
                                 .DirectoryProvider().RAMDirectory()
                                 .IndexingStrategy().Event()
                                 .MappingClass&amp;lt;LibrarySearchMapping&amp;gt;())
        .BuildConfiguration()
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>trullock</author><pubDate>Fri, 12 Mar 2010 00:07:01 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100312120701A</guid></item><item><title>Source code checked in, #46732</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46732</link><description>modified configuration to support even more fluent plugin to FluentNHIbernate</description><author>trullock</author><pubDate>Fri, 12 Mar 2010 00:03:26 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46732 20100312120326A</guid></item><item><title>Source code checked in, #46730</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46730</link><description>refactored another class away &amp;#58;D</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 23:33:28 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46730 20100311113328P</guid></item><item><title>Source code checked in, #46728</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46728</link><description>improved comments&amp;#13;&amp;#10;tidied up</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 23:23:10 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46728 20100311112310P</guid></item><item><title>Source code checked in, #46721</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46721</link><description>added fieldtest</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 23:04:35 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46721 20100311110435P</guid></item><item><title>Source code checked in, #46720</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46720</link><description>tidied test project</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 22:58:11 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46720 20100311105811P</guid></item><item><title>Source code checked in, #46718</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46718</link><description>Fixed build,&amp;#13;&amp;#10;broken EmbeddedPart circular reference prevention, a test will soon catch this&amp;#13;&amp;#10;slightly modified &amp;#40;perhaps temporarily&amp;#41; Document Bridge syntax. DocumentMap&amp;#40;&amp;#41; &amp;#123; Bridge&amp;#40;&amp;#41;.Guid&amp;#40;&amp;#41; has become DocumentMap&amp;#40;&amp;#41; &amp;#123; Bridge&amp;#40;&amp;#41;.Bridge&amp;#40;&amp;#41;.Guid&amp;#40;&amp;#41;</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 22:53:41 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46718 20100311105341P</guid></item><item><title>Source code checked in, #46713</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46713</link><description>deleting bad branch</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 22:05:48 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46713 20100311100548P</guid></item><item><title>Source code checked in, #46710</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46710</link><description>Actually comitting mapping changes&amp;#63; will codeplex break again&amp;#63; the build will be broken after i commit this, will fix imminently</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 22:00:08 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46710 20100311100008P</guid></item><item><title>Source code checked in, #46709</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46709</link><description>test tweaks</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 21:48:16 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46709 20100311094816P</guid></item><item><title>Source code checked in, #46708</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46708</link><description>committing mapping changes to trunkd espite wanting to use a branch, but codeplex is broken, so meh.</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 21:47:34 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46708 20100311094734P</guid></item><item><title>Source code checked in, #46705</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46705</link><description>test naming tidying, added more tests</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 21:40:45 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46705 20100311094045P</guid></item><item><title>Source code checked in, #46702</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46702</link><description>tidied Integration_Specification</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 21:32:18 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46702 20100311093218P</guid></item><item><title>Source code checked in, #46700</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46700</link><description>added first integration test, needs tidying up yet</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 21:16:46 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46700 20100311091646P</guid></item><item><title>Source code checked in, #46655</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46655</link><description></description><author>trullock</author><pubDate>Thu, 11 Mar 2010 18:09:58 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46655 20100311060958P</guid></item><item><title>Source code checked in, #46652</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46652</link><description>fixed build</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 18:00:57 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46652 20100311060057P</guid></item><item><title>Source code checked in, #46651</title><link>http://fnhsearch.codeplex.com/SourceControl/changeset/view/46651</link><description>begun adding tests</description><author>trullock</author><pubDate>Thu, 11 Mar 2010 17:58:42 GMT</pubDate><guid isPermaLink="false">Source code checked in, #46651 20100311055842P</guid></item></channel></rss>
