I\'ve got a class library doing all my NHibernate stuff. It also handles all the mapping using Fluent NHibernate - no mapping files to deploy.
I am trying to get this FluentNHibernate mapping to work. I have three tables Person, Employee and Employer. The Employee table extends the attributes of the Person table, and it\'s primary key is a f
I\'m trying to figure what\'s the correct way to map the following parent child relationship. I have a parent class which contains child objects. However, the parent also has a pointer to an instance
I currently have a bookings model such as: public class RoomBooking : Entity, IBooking { public virtual Client Client { get; set; }
I\'m looking for a FluentNH (Flu开发者_StackOverflow社区ent NHibernate) convention or configuration that ignores all properties that have no setter:
I have got an abstract base class and inherited poco entities. I am using table per subclass inheritance with fluent nhibernate 1.1 automapping.
at first i\'m really new to ORM, nhibernate and FHN. i look into this stuff for a few days now. i have an existing database with 4 tables:
I am trying to use NHibernate to save an object that was completely manually created.My mappings are in place and I currently have no data in the database.Everytime I call Save() or SaveOrUpdate(), NH
I have an entity called Strategy, and another one called Team. Both are mapped using a Many-To-Many relationship:
I got a polymorphic relationship like the following example: public class A { public virtual Guid Id { get; set; }