i have the following class: public class Worker { public int WorkerID {get;set;} public string Name { get;set;}
I\'m getting a SQL query from NH, and it\'s generating a column that does not exist (thus producing an ADOException from NH).
When i delete some object (or remove it) from a collection (such as list) and call SaveOrUpdate from the parent of this collection the row of the child isn\'t removed but updated by setting the foreig
I\'m using Fluent NHibernate\'s automapper to map the following domain model (via AutoMap开发者_如何学Python.AssemblyOf<Ticket>()), but it\'s throwing an exception when creating a SessionFactory
I have a TrackLog that contains a collection of GPS points as a TrackPoint object: public class TrackPoint
How can I map following queries using Fluent NHibernate (entity, mapping class etc..),开发者_如何学JAVAthe employee ids are stored in identifier tables. Person table contains employee information and
I have a class called Worker public class Worker : BaseEntity { public virtual int WorkerID { get; set; }
I\'m automapping most of my model, but have a problem with generics. I\'ve got ValueContainer<TValue>, and I make it abstract so that it
How to map a class that has another class nested inside it. I am using automapping. It gives exception \'NHibernate.MappingException: Association references unmapped class: class1+class2\'
i have an abstract class public abstract class Document { public int DocumentID {get; set;} } and derived class