One of these days I needed to map a C# class to a database table using FluentNHibernate. So far so good….
But then I got stuck as one the class properties was an enum.
As it turns out, there is no automatic mapping to enums.
The solution is to use a Custom Type and let FluentNHibernate know that that specific property has a custom type.
How can that be achieved?
Continue reading “Using an enum on a FluentNHibernate mapping [C#]” »