在 db 里面我有字段是decimal(9, 6)
Nhibernate 保存此数据并丢失格式中的最后一位decimal(9, 5)
问题是如何使用 nhib 映射字段。按代码映射以使用精度 9,6
Property(
x=>x.Longitude
// precision and scale
);
在 db 里面我有字段是decimal(9, 6)
Nhibernate 保存此数据并丢失格式中的最后一位decimal(9, 5)
问题是如何使用 nhib 映射字段。按代码映射以使用精度 9,6
Property(
x=>x.Longitude
// precision and scale
);