Hi, We've added a RangeConstraint om some decimal? fields like so:
and get an Exception from DO saying: Comparer for type "System.Nullable`1[System.Decimal]" is not found I think there is no implementation for the decimal? in this case. How do I solve this? Regards Paul |
I already discovered why. Attributes can only have primitive properties because attributes are compiled into the metadata and only primitives are allowed there. A decimal(?) is not a primitive. |