0

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?

4

1 に答える 1

0

ISessionFactory.GetClassMetadata()。返された IClassMetadata の PropertyNames と PropertyTypes を見てください。

于 2012-10-14T21:36:07.637 に答える