If I have a model with a decimal property:
<property name="Prop" column="prop" type="decimal"
precision="19" scale="4" not-null="true" />
is it possible to get the precision
and scale
attributes in C# without parsing the HBM?
If I have a model with a decimal property:
<property name="Prop" column="prop" type="decimal"
precision="19" scale="4" not-null="true" />
is it possible to get the precision
and scale
attributes in C# without parsing the HBM?