NHibernate: using C # doubles with SQL Server as "floats"

I use NH to map C # -double values ​​in SQL Server 2005 as a float. Everything works fine, but lately I tried to run SchemaValidator.

SchemaValidator fails:

Found: float, Expected DOUBLE PRECISION

Creating tables using DOUBLE PRECISIONworks, but SQL Server will report columns asfloat

Am I missing something, or is this a (minor) error in NHibernates type matching?

EDIT:
This bug is fixed in version 2014-06-27: NHibernate-4.0.0.Alpha2

+5
source share
1 answer

Float (53) SQL Server , # double, ​​.

+4

All Articles