Hi, In the Manual it says there is a Nullable property for the [Field()] attribute. What is it's default? Regards Paul Sinnema Diartis AG PS: There are a lot of properties available. It would be good to document their defaults as well. This thread was imported from our support forum. The original discussion may contain more detailed answer. |
General rule: default value for any field is the value that is mapped to SQL default for its column(s). Thus if field is non-nullable, default is:
Otherwise (if field is nullable), default is null. |