I have question about fluent nhibernate and mysql. I'm doing this:
Fluently.Configure()
.Database(MySQLConfiguration.Standard.ShowSql())
.Mappings(m =>
m.FluentMappings
.AddFromAssemblyOf<ShopperMapping>())
.BuildConfiguration();SchemaExport
exp = new SchemaExport(cfg);
exp.Execute(true, false, false, true);
But when doing this I get failures like "Dialect does not support DbType.Uint32" and the likes. I get the same for mapped properties that are of type Uint64 (ulong). Why does this happen? Does anyone know? Do I need to map in some other way? Like explicitly saying which access strategy to use or something like that?
Regards, Jörgen