Edit I have the answer and will post it up tomorrow. I have a class that appears to be using the parent primary key column instead of it\'s own primary key column.
I\'ve got to columns in a legacy schema, that I\'d like to map as a component (aka value type). The reference to the component/value type is of private scope.
I\'m having a problem mapping to IDictionary using the new Loquacious configuration. Here\'s the class:
The class: public class SOPProcess : ISOPProcess { public virtual Guid Id { get; set; } public virtual SOP SOP { get; set; }
Playing around with Fluent NHibernate\'s Getting Started project. I tried to customize the example a bit, for a few reasons, among them elimination of circular reference for json serialization.
First off, I am extremely new with using NHibernate and Fluent NHibernate so it\'s very likely that I\'m making a simple mistake. I jumped right into NHibernate over the last few days using Fluent NHi
Took me a while to find an answer for t开发者_StackOverflowhis so thought I\'d share the love. When using NHibernate\'s new mapping by code with SQL Server I\'m unable to save an entity. When savin
Using NHibernate 3.2 mapping by code (not fluent-nhibernate), I\'m trying to map an Enum field to a string column instead of the default int representation. I can\'t get the right syntax.
I use FluentNHibernate (Automapping) for mapping, NHibernate 3.2 for data access and SchemaExport to generate my database.
Whew.... tried to fit it all into the title there :) I have a base class/table for \"Content\" items in my CMS.I have a ContentItem subclass that has its own table, hence I map it with the SubClassMa