Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enum and Nhibernate

Tags:

nhibernate

Is it possble to use an Enum with Nhibernate? If so How?


1 Answers

Yes you can.

In your XML mapping file

<property type="Namespace.EnumClass, Namespace" 
                            name="EnumValue" column="columnName"></property>

Example 1

Example 2

like image 81
cgreeno Avatar answered Feb 03 '26 04:02

cgreeno