PropertyTypeDefinition Nullable Property
Gets or sets a value indicating whether Nullable. Properties are true only if the property can be set to NULL. Some fields are NOT Nullable but are also defaulted on insert. For this reason the Nullable property does not indicate if the field is required, it only indicates that a user will likely receive an error if they attempt to set a NULL value into the field on update. NOTE: This field is purely informational. It dictates no behavior in the application.
Namespace: Scribe.Core.ConnectorApi.Metadata
Assembly: Scribe.Core.ConnectorApi (in Scribe.Core.ConnectorApi.dll)
Syntax
public bool Nullable { get; set; }
Property Value
Type: Boolean
Implements
IPropertyTypeDefinition Nullable
See