In the application I'm building, I have many decimal fields with a specific precision and scale that need to be mapped from a database. I can achieve this by using the Precision()
and Scale()
methods:
public class ClassAMap : ClassMap<ClassA>
{
public ClassAMap ()
{
Map(x => x.Value).Precision(22).Scale(12);
}
}
Is there any way to change the default precision and scale for decimals, so I don't need to remember to add the calls to Precision()
and Scale()
for every decimal mapped?