Question says it all really, the default is for it to map as a string but I need it to map as an int.
string
int
I\'m currently using Persistenc
Persistenc
this is how I've mapped a enum property with an int value:
Map(x => x.Status).CustomType(typeof(Int32));
works for me!