My code is accumulating object deletes and updates from the user and then tries to apply those in one shot. In the case I\'m having troubles, it is a business requirement that the parent is only delet
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
the title is confusing sorry, if you can think of a better one, please change it. I have three tables, say, bikes, owners and a relationship table (something like many to many) that defines all owner
I have the following model public class Account { public int Id { get; set; } public List<Note> Notes { get; set; }
I am trying to map a Person and Address class that have a many-to-many relationship. I want to map the Address collection as an IDictionary with the Address property Type as the key. The relationship
I have a class that I am trying to use the Automapping feature of Fluent on. The class has a list of objects that are contained in a special class which is contains a List.It is basically written to
I\'m using NHibernate and looking for a solution that will allow me to audit changes to all fields in entity. I want to be able to create a history table for every entity i.e. Users -> UsersHistory th
I have a problem with my mappings Employee and Project: For example in Employee mapping I have \"bag\" to map other tables. The problem is when I open the Employee window, this take a lot of time(10 s
In my project I use a IUserType (BooleanM1) that handles boolean values and writes -1 for true and 0 for false values to the database. So far everything works well. The mapping looks like
I am trying to use NHibernate to map a graph built with the following entites to the relational database (The code is incomplete and just for demo purpose, which should look straightforward). Potentia