@Null or @Null() - mark entity property as nullable (NULLs are allowed in DB) If neither @NotNull nor @Null specified, nullability will be derived from field type (e.g. NotNull for int, long; Null for string, byte[], Nullable!int)
See Implementation
@Null or @Null() - mark entity property as nullable (NULLs are allowed in DB) If neither @NotNull nor @Null specified, nullability will be derived from field type (e.g. NotNull for int, long; Null for string, byte[], Nullable!int)