Given the following [Test] public void VerifyMappings() { new PersistenceSpecification<Address>(Session)
I have a TrackLog that contains a collection of GPS points as a TrackPoint object: public class TrackPoint
This is just something I\'ve been thinking about and was wondering if it exists, or even if its beneficial at all.
I have a class School and another class Teachers. now every school can contain m Teachers and one Teacher may be part of more than one school. But in the Teachers class I dont want a property that tel
public class MyObjectMap : IAutoMappingOverride<MyObject> { public void Override(AutoMapping<MyObject> mapping)
I\'m trying to delete a database record using ASP.NET MVC, Fluent, and NHibernate. See the code below for examples of how I\'m trying to accomplish this. I am able to Get, Update, and Insert records b
I\'m trying to ignore the property which is a ReadOnlyCollection and map the private property. I\'m getting the following error:
My Domain: public class Person { public Person() { } public virtual int PersonId { get; set; } public virtual string Title { get; set; }
I would like to use FluentNHibernate to map an Active Directory user object to a POCO object but can\'t find a provider in the FluentNHibernate.Cfg.Db namespace that will allow me to setup the connect
In this sample console app I want to update a row in a table, and then insert another row in the same table.