User James Gregory - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T02:13:21Z http://stackoverflow.com/feeds/user/27206 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1881524/mapping-a-single-field-to-multiple-tables-with-fluent-nhibernate/1887844#1887844 0 Answer by James Gregory for Mapping a single field to multiple tables with Fluent NHibernate James Gregory 2009-12-11T12:43:23Z 2009-12-11T12:43:23Z <p>Personally, I wouldn't go with the design you have. Instead I'd create subclasses of your <code>Claim</code> class, <code>VehicleClaim</code> and <code>PropertyClaim</code> respectively.</p> <pre><code>public class VehicleClaim : Claim { public virtual Vehicle Vehicle { get; set; } } </code></pre> <p>Then change your mappings to use your <code>InvolvedPartyContext</code> column as a discriminator (the column which NHibernate uses to determine which class the row represents), and create subclass mappings for each subclass.</p> <pre><code>public class ClaimMap : ClassMap&lt;Claim&gt; { public ClaimMap() { Id(x =&gt; x.Id); DiscriminateSubClassesOnColumn("InvolvedPartyContext"); } } public class VehicleClaimMap : SubclassMap&lt;VehicleClaim&gt; { public VehicleClaimMap() { DiscriminatorValue(1); References(x =&gt; x.Vehicle); } } </code></pre> <p>If you really do want to run with what you've got, you should look into the <em>any</em> mappings; there isn't a lot of documentation on them, but you use the <code>ReferencesAny</code> method.</p> http://stackoverflow.com/questions/1882751/mixing-fluent-mapping-with-automapping-with-fluent-nhibernate/1887795#1887795 0 Answer by James Gregory for Mixing fluent mapping with automapping with Fluent NHibernate? James Gregory 2009-12-11T12:33:29Z 2009-12-11T12:33:29Z <p><a href="http://wiki.fluentnhibernate.org/Fluent%5Fconfiguration#Mixed%5Ffluent%5Fmappings%5Fand%5Fauto%5Fmappings" rel="nofollow">Fluent Configuration: Mixed fluent mappings and auto-mappings</a></p> http://stackoverflow.com/questions/1877299/what-is-the-fluent-nhibernate-convention-for-value-object-list/1879907#1879907 0 Answer by James Gregory for What is the Fluent NHibernate Convention for value object list James Gregory 2009-12-10T09:49:04Z 2009-12-10T09:49:04Z <p>Using an <code>IHasManyConvention</code> should've worked. Try an <code>IBagConvention</code>, see if that works. If not, there's a bug in there.</p> http://stackoverflow.com/questions/1878206/automapping-subclass-in-fluent-nhibernate/1879792#1879792 0 Answer by James Gregory for Automapping subclass in Fluent NHibernate James Gregory 2009-12-10T09:28:59Z 2009-12-10T09:28:59Z <p>You shouldn't have the <code>SubClass</code> calls in your override. They will be picked up automatically by the automapping.</p> http://stackoverflow.com/questions/1860369/wrapping-a-control-in-a-border-using-styles-without-overwriting-default-appearanc 0 Wrapping a control in a border using styles without overwriting default appearance James Gregory 2009-12-07T14:39:05Z 2009-12-07T17:53:30Z <p>What I'm attempting to do is wrap a control in a border without changing it's default appearance, and also without having to create custom controls.</p> <p>I'd like to do the equivalent of this:</p> <pre><code>&lt;Border BorderBrush="Red" BorderThickness="3"&gt; &lt;Button&gt;Hello!&lt;/Button&gt; &lt;/Border&gt; </code></pre> <p>Just to any control, without actually having to wrap everything in a <code>Border</code>. I attempted to do this by modifying the <code>Template</code> in a style with the following:</p> <pre><code>&lt;ControlTemplate TargetType="{x:Type Button}"&gt; &lt;Border BorderBrush="Red" BorderThickness="3"&gt; &lt;ContentPresenter /&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; </code></pre> <p>This successfully adds a border, but also wipes out any other style on the <code>Button</code>. I'd like it to still look like a button, just with an extra border around it.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1808328/nhibernate-validator-with-fluent/1808687#1808687 0 Answer by James Gregory for NHibernate Validator with Fluent James Gregory 2009-11-27T13:10:07Z 2009-11-27T13:10:07Z <p>NHibernate Validator doesn't alter the mappings that are created, it just validates your entity against your rules before saving. You need to also specify in your mappings that you don't want your columns to be nullable.</p> <pre><code>Map(x =&gt; x.Property) .Not.Nullable(); </code></pre> <p>If you're doing that for a lot of properties, it might be worth looking into using a <a href="http://wiki.fluentnhibernate.org/Conventions" rel="nofollow">convention</a>; specifically a <code>PropertyAttributeConvention</code> would work well in your case.</p> http://stackoverflow.com/questions/1807915/how-to-change-schema-with-fluent-nhibernate-automapping/1808383#1808383 0 Answer by James Gregory for How to change schema with Fluent NHibernate AutoMapping James Gregory 2009-11-27T12:07:55Z 2009-11-27T12:07:55Z <p>Use a <a href="http://wiki.fluentnhibernate.org/Conventions" rel="nofollow">convention</a>, specifically an <code>IClassConvention</code>.</p> http://stackoverflow.com/questions/1796195/keeping-nhibernate-fluent-mapping-in-sync-with-the-database/1796737#1796737 0 Answer by James Gregory for Keeping nhibernate fluent mapping in sync with the database James Gregory 2009-11-25T12:53:44Z 2009-11-25T12:53:44Z <p>Not really. Just update your mappings as you write your script. Chances are you'll be changing your entities as-well anyway.</p> http://stackoverflow.com/questions/1784379/specifying-select-before-update-with-fluent-nhibernate/1786859#1786859 1 Answer by James Gregory for Specifying select-before-update with Fluent NHibernate? James Gregory 2009-11-23T23:44:11Z 2009-11-23T23:44:11Z <p><code>SelectBeforeUpdate()</code> in your <code>ClassMap</code>.</p> http://stackoverflow.com/questions/1762931/how-can-i-use-the-nhibernate-configuration-class-with-fluent-nhibernate/1763379#1763379 2 Answer by James Gregory for How can I use the NHibernate Configuration class with Fluent NHibernate. James Gregory 2009-11-19T13:41:55Z 2009-11-19T13:41:55Z <p>Yes, if you're using the <a href="http://wiki.fluentnhibernate.org/Fluent%5Fconfiguration" rel="nofollow">fluent configuration API</a> the <code>Configure</code> method has an overload that takes an existing NHibernate <code>Configuration</code> instance, which can be built from your hibernate.cfg.xml.</p> http://stackoverflow.com/questions/1758984/many-to-many-relationship-with-fluent-nhibernate/1762102#1762102 0 Answer by James Gregory for Many to Many relationship with Fluent NHibernate James Gregory 2009-11-19T09:49:33Z 2009-11-19T09:49:33Z <p>Fluent NHibernate tries to determine what the other side of a many-to-many relationship is by looking at the entity names and the collection properties. I believe it's not working in your case because your collection properties aren't plural; try renaming your collections <code>Employees</code> and <code>Teams</code> respectively.</p> <p>Another way is to manually set the many-to-many table name on both sides, as this will disable the prediction.</p> http://stackoverflow.com/questions/1759867/how-do-i-compare-an-object-with-an-nhibernate-proxy-object/1762081#1762081 1 Answer by James Gregory for How do I compare an object with an NHibernate proxy object? James Gregory 2009-11-19T09:44:50Z 2009-11-19T09:44:50Z <p>I believe you need to override <code>GetHashCode</code> and <code>Equals</code> in your entities.</p> http://stackoverflow.com/questions/1740495/fluent-nhibernate-join-vs-hasmany-manytomany/1742437#1742437 0 Answer by James Gregory for fluent nhibernate join vs hasmany / manytomany James Gregory 2009-11-16T14:16:42Z 2009-11-16T14:16:42Z <p>Join is <em>completely</em> unrelated to one-to-many and many-to-many's. It's for composing an entity from 2 or more tables. See the <a href="http://www.nhforge.org/doc/nh/en/index.html#mapping-declaration-join" rel="nofollow">NHibernate docs on join</a>.</p> http://stackoverflow.com/questions/1721408/dependency-injection-is-this-how-its-meant-to-look/1721435#1721435 1 Answer by James Gregory for Dependency Injection - is this how it's meant to look? James Gregory 2009-11-12T10:56:44Z 2009-11-12T10:56:44Z <p>No, it shouldn't look like that. Your <code>FooRequestService</code> has way too many responsibilities if it has all those dependencies. You should refactor dependencies that are logically related into separate services, thus creating more reusable components while (more importantly) greatly reducing the dependencies your <code>FooRequestService</code> has.</p> <p>With regard to your scoping comments, that's another symptom of a class with too many responsibilities. Those methods you want to scope your dependencies to should be extracted into a separate class.</p> http://stackoverflow.com/questions/1692727/wpf-binding-directly-to-a-control 0 WPF: Binding directly to a control James Gregory 2009-11-07T11:15:17Z 2009-11-07T20:53:44Z <p>I need to bind a property of a <code>UserControl</code> directly to another control, rather than any specific property on that control. What's the best way to achieve this? I've tried various combinations of the <code>Binding</code> properties to no avail.</p> <p>For some context, the <code>UserControl </code>has a <code>Next</code> property that specifies which control is next in the navigation hierarchy; it's similar to <code>TabIndex</code> but for context sensitive navigation.</p> <pre><code>&lt;c:MyControl x:Name="First" Next="{Binding ???}" /&gt; &lt;c:MyControl x:Name="Second" /&gt; </code></pre> <p>From reading the docs, I assumed I should've been able to do: <code>{Binding Source=Second, BindsDirectlyToSource=True}</code>, but that didn't work.</p> http://stackoverflow.com/questions/1683623/mixing-hbm-with-fluent-mappings-with-fluent-nhibernate/1686287#1686287 0 Answer by James Gregory for Mixing hbm with fluent mappings with fluent nhibernate James Gregory 2009-11-06T08:50:34Z 2009-11-06T08:50:34Z <p>Try making your <code>DomainEntityMap</code> abstract, otherwise try creating <code>CountryMap</code> as a straight <code>ClassMap&lt;Country&gt;</code> rather than using the base class, see if that has any effect. </p> http://stackoverflow.com/questions/1675693/intercepting-property-setting-in-fluent-nhibernate/1680172#1680172 1 Answer by James Gregory for Intercepting property setting in Fluent NHibernate James Gregory 2009-11-05T12:10:38Z 2009-11-05T12:10:38Z <p>You should use an <code>IUserType</code>, this is an NHibernate feature rather than Fluent NHibernate. You'd then use <code>CustomType&lt;YourUserType&gt;()</code> on your property.</p> <p>A google search reveals many different examples of implementing the <code>IUserType</code> interface, such as <a href="http://www.martinwilley.com/net/code/nhibernate/usertype.html" rel="nofollow">http://www.martinwilley.com/net/code/nhibernate/usertype.html</a>.</p> http://stackoverflow.com/questions/1676056/how-to-find-out-the-revision-number-of-fluent-nhibernates-source-code-from-where/1679460#1679460 0 Answer by James Gregory for How to find out the revision number of fluent nhibernate's source code from where 1.0RTM was created. James Gregory 2009-11-05T09:49:09Z 2009-11-05T09:49:09Z <p>Fluent NHibernate is hosted on github, and there's a tag for each release. For example: <a href="http://github.com/jagregory/fluent-nhibernate/tree/release-1.0RTM" rel="nofollow">release-1.0RTM</a>.</p> <p>NHibernate.Linq is unrelated to Fluent NHibernate, it's a part of <a href="http://sourceforge.net/projects/nhcontrib/" rel="nofollow">NHContrib</a>.</p> http://stackoverflow.com/questions/1678119/mapping-an-interface-and-concrete-class-with-fluentnhibernate/1679211#1679211 1 Answer by James Gregory for Mapping an interface and concrete class with FluentNHibernate James Gregory 2009-11-05T08:53:59Z 2009-11-05T08:53:59Z <p>What kind of inheritance strategy are you trying to map with? Table-per-class or table-per-class-hierarchy? Your current mapping implies a table-per-class.</p> <p>Either way, I think something's gone wrong. <code>Object_id</code> is the foreign key name, and it's supposed to be built by looking at the parent class's name. My guess would be that we're not treating the interface as a "parent".</p> <p>Firstly, I'd recommend you raise an issue on our issues list, or maybe hit the mailing list. It'll be a bit more on our radar there.</p> <p>Secondly, you could try specifying the column name explicitly, but I don't know what other repercussions there may be of the parent issue I mentioned. To specify it you should just need to do <code>KeyColumn("Id")</code>.</p> http://stackoverflow.com/questions/1662405/fluentnhibernate-joined-subclass/1667392#1667392 1 Answer by James Gregory for FluentNHibernate joined-subclass James Gregory 2009-11-03T13:40:03Z 2009-11-03T13:40:03Z <p>The recommended way to map a joined-subclass is to inherit from <code>SubclassMap</code> much in the same way you inherit from <code>ClassMap</code> for your non-subclass entities.</p> <p>It's described in the <a href="http://wiki.fluentnhibernate.org/Fluent%5Fmapping#Subclasses" rel="nofollow">fluent mapping subclasses</a> section on the <a href="http://wiki.fluentnhibernate.org" rel="nofollow">wiki</a>.</p> http://stackoverflow.com/questions/1578116/fluentnhibernate-rtm-and-nhibernate-linq/1605983#1605983 1 Answer by James Gregory for FluentNHibernate RTM and NHibernate.Linq James Gregory 2009-10-22T09:15:15Z 2009-10-22T09:15:15Z <p>Your version numbers aren't the same according to that exception.</p> <blockquote> <p>... 'FluentNHibernate' uses 'NHibernate, Version=<strong>2.1.0.4000</strong> ... which has a higher version than referenced assembly 'NHibernate, Version=<strong>2.0.1.4000</strong> ...</p> </blockquote> <p>2.1.0.4000 vs. 2.0.1.4000</p> http://stackoverflow.com/questions/1578729/fluent-nhibernate-how-to-specify-table-name/1605964#1605964 1 Answer by James Gregory for Fluent Nhibernate - How to specify table name James Gregory 2009-10-22T09:11:32Z 2009-10-22T09:11:32Z <p><code>WithTable</code> was renamed to <code>Table</code> for the 1.0 release. It was mentioned in the <a href="http://wiki.fluentnhibernate.org/Release%5Fnotes%5F1.0" rel="nofollow">release notes</a> (first bullet point).</p> http://stackoverflow.com/questions/1603460/in-fluent-nhibernate-how-do-you-combine-automapped-types-with-non-automapped-type/1605922#1605922 2 Answer by James Gregory for In Fluent NHibernate how do you combine automapped types with non-automapped types? James Gregory 2009-10-22T09:02:57Z 2009-10-22T09:02:57Z <p>The <a href="http://wiki.fluentnhibernate.org/Fluent%5Fconfiguration#Mixed%5Ffluent%5Fmappings%5Fand%5Fauto%5Fmappings" rel="nofollow">mixed fluent mappings and auto mappings example</a> in the wiki should work, if it doesn't then there's a bug.</p> <p>As a work-around, exclude the types that have been manually mapped from you automappings. You'd do that by using the <code>Where</code> method, as show in the wiki examples, something like this:</p> <pre><code>AutoMap.AssemblyOf&lt;DomainEntity&gt;() .Where(type =&gt; type != typeof(OneOfYourManuallyMappedClasses)); </code></pre> <p>If you have a lot of fluent mappings, you could create a collection to keep the automapping setup clean:</p> <pre><code>var mappedTypes = new[] { typeof(One), typeof(Two) }; AutoMap.AssemblyOf&lt;DomainEntity&gt;() .Where(type =&gt; !mappedTypes.Contains(type)); </code></pre> <p>Again, this shouldn't be necessary, but if you're certain it's not working with the wiki example then I'd suggest raising an issue.</p> http://stackoverflow.com/questions/621998/restoring-window-focus-back-to-previous-owner 3 Restoring window focus back to previous owner James Gregory 2009-03-07T15:31:04Z 2009-09-03T19:04:55Z <p>I've got an application that sits in the system tray, which when double clicked on opens a window, fairly standard; however, when you close the window I'd like the window that was focussed <em>before</em> mine was opened to be given back focus.</p> <p>If I pop my window up by a keyboard shortcut, I'm able to restore the previous focus on close by using the <code>GetForegroundWindow</code> API call before my window shows, then the <code>SetForegroundWindow</code> method after my window closes (with the value of the first call) to restore focus. This doesn't work when you open then window through the system tray, because the user has essentially made the system tray focus.</p> <p>I've tried using a combination of <code>GetForegroundWindow</code>, <code>GetWindow</code>, and <code>GetTopMostWindow</code> to try to navigate the z-order to find the second window after the system tray (going on the assumption that the system tray will have jumped to the top, so logically the next one down would be the original front). I haven't had any success though, the results of those functions are pretty useless as they don't seem to give me any logical structure.</p> <p>Does anyone have any ideas on how I could achieve this?</p> <p>I had thought about some kind of background watcher, which just sits and monitors which is the front window and stores a pointer to it, but that'll be flaky at best.</p> <p>This is on Windows (I'm personally on x64 Server 2008) and with .Net 3.5.</p> http://stackoverflow.com/questions/1345125/nhibernate-domain-object-spans-multiple-tables/1356433#1356433 0 Answer by James Gregory for NHibernate Domain Object Spans Multiple Tables James Gregory 2009-08-31T08:29:04Z 2009-08-31T08:29:04Z <p>Try <code>Join</code>, but I would recommend changing your design.</p> <pre><code>public class SpansMultipleTablesMap : ClassMap&lt;SpansMultipleTables&gt; { public SpansMultipleTablesMap() { Id(x =&gt; x.CommonID); Join("Table1", m =&gt; { m.Map(x =&gt; x.Table1Value, "Value"); }); Join("Table2", m =&gt; { m.Map(x =&gt; x.Table2Value, "Value"); }); Join("Table3", m =&gt; { m.Map(x =&gt; x.Table3Value, "Value"); }); } } </code></pre> http://stackoverflow.com/questions/1354177/fluent-nhibernate-left-join/1356415#1356415 3 Answer by James Gregory for Fluent Nhibernate left join James Gregory 2009-08-31T08:23:07Z 2009-08-31T08:23:07Z <p>Try the <code>Optional()</code> method.</p> <pre><code>Join("Users", m =&gt; { m.Optional(); m.Map(x =&gt; x.FullName); }); </code></pre> http://stackoverflow.com/questions/1354029/excluding-some-tables-from-fluent-nhibernate-schema-generation/1356406#1356406 0 Answer by James Gregory for Excluding some tables from Fluent Nhibernate schema Generation James Gregory 2009-08-31T08:20:34Z 2009-08-31T08:20:34Z <p><code>SchemaAction.None()</code> in your ClassMap.</p> http://stackoverflow.com/questions/1354686/issues-with-fluent-nhibernate-automapping-in-version-1-0rc/1356404#1356404 0 Answer by James Gregory for Issues with Fluent Nhibernate Automapping in version 1.0RC James Gregory 2009-08-31T08:19:33Z 2009-08-31T08:19:33Z <p>The Fluent NHibernate example entities are in the <code>Examples.FirstProject.Entities</code> namespace, while you're limiting the AutoMap to <code>FluentExample.Entities</code> (in <code>type =&gt; type.Namespace == "FluentExample.Entities"</code>).</p> <p>The first error message points to that by stating "references an unsaved transient instance [...] <em>FluentExample.Entities.Employee</em>"</p> <p>You should update the AutoMap code to point to the correct interface. If you have classes in multiple interfaces, you can modify the criteria to include an or.</p> http://stackoverflow.com/questions/1264427/custom-naming-conventions-in-fluent-nhibernate-automapping/1265522#1265522 -1 Answer by James Gregory for Custom naming conventions in Fluent NHibernate AutoMapping James Gregory 2009-08-12T11:09:15Z 2009-08-12T11:09:15Z <p>I advise you to read the <a href="http://wiki.fluentnhibernate.org" rel="nofollow">Fluent NHibernate Wiki</a>, it's a much more up-to-date source of information than random blogs. Particularly there's a <a href="http://wiki.fluentnhibernate.org/show/Conventions" rel="nofollow">Conventions</a> page.</p> http://stackoverflow.com/questions/1253474/how-do-i-configure-fluentnhibernate-to-not-overwrite-an-existing-sqlite-db-file/1253871#1253871 3 Answer by James Gregory for How do I configure FluentNHibernate to not overwrite an existing SQLite db file? James Gregory 2009-08-10T09:15:20Z 2009-08-10T09:15:20Z <p>Put an if statement in your BuildSchema?</p> <pre><code>if (!File.Exists("foo.db")) new SchemaExport(config).Create(false, true); </code></pre> http://stackoverflow.com/questions/1017656/proxyfactoryfactorynotconfiguredexception-while-lazy-is-false Comment by James Gregory on ProxyFactoryFactoryNotConfiguredException, while lazy is false James Gregory 2009-12-11T12:48:18Z 2009-12-11T12:48:18Z You still need to have a proxy factory available to NHibernate, even if it don't use it. http://stackoverflow.com/questions/1878206/automapping-subclass-in-fluent-nhibernate/1879792#1879792 Comment by James Gregory on Automapping subclass in Fluent NHibernate James Gregory 2009-12-10T10:30:55Z 2009-12-10T10:30:55Z If you're not happy with the discriminator value being the class name, then you can implement an <code>ISubclassConvention</code>. http://stackoverflow.com/questions/1858245/fluent-nhibernate-how-to-tell-it-not-to-map-a-base-class Comment by James Gregory on Fluent NHibernate: How to tell it not to map a base class James Gregory 2009-12-08T09:29:11Z 2009-12-08T09:29:11Z I'm not following. If you want to manually map your entities why are you using <code>AutoMap</code>? http://stackoverflow.com/questions/1860369/wrapping-a-control-in-a-border-using-styles-without-overwriting-default-appearanc/1860875#1860875 Comment by James Gregory on Wrapping a control in a border using styles without overwriting default appearance James Gregory 2009-12-07T16:15:46Z 2009-12-07T16:15:46Z I didn't know about Adorners, this could be just what I need. http://stackoverflow.com/questions/1860369/wrapping-a-control-in-a-border-using-styles-without-overwriting-default-appearanc/1860405#1860405 Comment by James Gregory on Wrapping a control in a border using styles without overwriting default appearance James Gregory 2009-12-07T14:48:31Z 2009-12-07T14:48:31Z That's something I'm trying to avoid having to do, as the feature would effectively require me to completely recreate the template of every control. http://stackoverflow.com/questions/1847313/cannot-use-guid-identity-in-fluentnhibernate Comment by James Gregory on Cannot use Guid Identity in fluentnhibernate James Gregory 2009-12-04T16:47:51Z 2009-12-04T16:47:51Z Can you show us your entity? What's the data-type of your <code>TR&#95;ID</code> column? http://stackoverflow.com/questions/1716114/fluentnhibernate-cant-change-key-column-name-for-a-one-to-many-relationship/1718028#1718028 Comment by James Gregory on FluentNHibernate: can't change key column name for a one-to-many relationship James Gregory 2009-11-12T11:48:06Z 2009-11-12T11:48:06Z You need to update your copy of Fluent NHibernate. 1.0 RTM was released a couple of months ago now. http://stackoverflow.com/questions/1692727/wpf-binding-directly-to-a-control/1694382#1694382 Comment by James Gregory on WPF: Binding directly to a control James Gregory 2009-11-08T11:24:14Z 2009-11-08T11:24:14Z Thanks for the suggestion Ray, and certainly for the example given it would be better to use what you've said; however, my example is an oversimplification of the design. http://stackoverflow.com/questions/1692727/wpf-binding-directly-to-a-control/1692778#1692778 Comment by James Gregory on WPF: Binding directly to a control James Gregory 2009-11-07T12:18:08Z 2009-11-07T12:18:08Z I tried <code>ElementName</code> before without any success, but after some further investigation it ends up it was working fine, but how I was debugging it was wrong. My overridden event was being called against <code>Second</code>, without me realising, so <code>Next</code> was always null. Once I realised this and got the event raising against <code>First</code>, the property was set. http://stackoverflow.com/questions/1686452/how-to-modify-an-expressiontdelegates-parameters/1686480#1686480 Comment by James Gregory on How to modify an Expression<TDelegate>s parameters James Gregory 2009-11-06T09:53:31Z 2009-11-06T09:53:31Z Mainly how your Expression is being created. The example you gave, is that a pre-built Expression that you just need to call with an <code>MyClass&lt;string&gt;</code> instance, or do you actually need an <code>Expression&lt;Action&lt;MyClass&lt;string&gt;&gt;&gt;</code> creating from it? http://stackoverflow.com/questions/1676056/how-to-find-out-the-revision-number-of-fluent-nhibernates-source-code-from-where/1679460#1679460 Comment by James Gregory on How to find out the revision number of fluent nhibernate's source code from where 1.0RTM was created. James Gregory 2009-11-05T16:46:46Z 2009-11-05T16:46:46Z No, it isn't. You need to install Git to use a Git repository. Fluent NHibernate does have a mirroed SVN repository, if you need it. <a href="http://code.google.com/p/fluent-nhibernate/source" rel="nofollow">code.google.com/p/fluent-nhibernate/source</a> http://stackoverflow.com/questions/1662405/fluentnhibernate-joined-subclass/1662590#1662590 Comment by James Gregory on FluentNHibernate joined-subclass James Gregory 2009-11-03T13:38:15Z 2009-11-03T13:38:15Z That's not valid. There's no Map to override, and Join creates a join mapping, not a joined-subclass. http://stackoverflow.com/questions/1630886/fluent-nhibernate-exception-occurred-during-configuration-of-persistence-layer/1631322#1631322 Comment by James Gregory on Fluent NHibernate - exception occurred during configuration of persistence layer James Gregory 2009-10-27T14:52:59Z 2009-10-27T14:52:59Z Check the InnerException. http://stackoverflow.com/questions/1592575/does-fluent-hibernate-exist/1592589#1592589 Comment by James Gregory on Does Fluent-Hibernate exist? James Gregory 2009-10-22T09:08:40Z 2009-10-22T09:08:40Z From the horses mouth (I'm the lead developer on Fluent NHibernate): the reason Fluent Hibernate doesn't exist is exactly because of the lack of lambda expressions. It's not just the lack of basic lambdas, but the ability to parse those expressions that FNH relies heavily on; without which you'd need to resort to strings and that's no better than XML in my opinion. It's always a possibility for the future though. http://stackoverflow.com/questions/802940/why-cant-i-set-readonly-on-a-fluent-nhibernate-references-mapping/803325#803325 Comment by James Gregory on Why can't I set ReadOnly on a Fluent NHibernate References() mapping? James Gregory 2009-08-30T17:17:53Z 2009-08-30T17:17:53Z Fluent NHibernate 1.0 has been released. Update to that, it should have the methods you need.