I have this setup (condensed for brevity) Class Employee virtual IList<ChecklistItem> HasInitialed { get; private set; }
i have the following scenario public abstract class BaseClass { public virtual int Id {get; set}; public virtual string Name {get; set;}
I use FluentNHibernate with AutoMapping. No custom conventions or alterations are used. Both NHibernate and FluentNHibernate assemblies are of the latest versions. Database is Sqlite3
We are using fluentnhibernate with automapping and we have a naming convention that all columns that are foreign keys, there column name will end with \"Key\". So we have a convention that looks like
I am feeling dejavu, but I cannot find the answer to this: I have an array of objects that needs to look like this when inspecting a jQ $.post call:
I\'m using Fluent NHibernate\'s AutoMap feature to map my entities. Most of my entities inherit from a base class Entity which has a property public IList<Tag> Tags.
I have an inheritance public abstract class UserEntity : Entity { public virtual int Id { get; pr开发者_StackOverflowotected set; }
Please, how can I do map a property of type one-to-many in fluent NHibernate through AutoMapping? My entities are mapp开发者_运维技巧ed like down there:
I\'m trying to automap a class Code. Codes can have (Sub)Codes. public class Code { public virtual string Key{get;set;}
I use FluentNHibernate with AutoMapping to map my persistent classes. The default Table per Sub-Class mapping works fine for almost all of my class hierarchies, except one:Here I have an abstract base