Udostępnij za pośrednictwem


ColumnAttribute.CanBeNull Właściwość

Definicja

Pobiera lub ustawia, czy kolumna może zawierać wartości null.

public:
 property bool CanBeNull { bool get(); void set(bool value); };
public bool CanBeNull { get; set; }
member this.CanBeNull : bool with get, set
Public Property CanBeNull As Boolean

Wartość właściwości

Wartość domyślna = true.

Przykłady

[Column(Storage="_LastName", DbType="NVarChar(20) NOT NULL", CanBeNull=false)]
public string LastName
{
    get
    {
        return this._LastName;
    }
    set
    {
        if ((this._LastName != value))
        {
            this.OnLastNameChanging(value);
            this.SendPropertyChanging();
            this._LastName = value;
            this.SendPropertyChanged("LastName");
            this.OnLastNameChanged();
        }
    }
}
<Column(Storage:="_LastName", DbType:="NVarChar(20) NOT NULL", CanBeNull:=false)>  _
Public Property LastName() As String
    Get
        Return Me._LastName
    End Get
    Set
        If ((Me._LastName = value)  _
                    = false) Then
            Me.OnLastNameChanging(value)
            Me.SendPropertyChanging
            Me._LastName = value
            Me.SendPropertyChanged("LastName")
            Me.OnLastNameChanged
        End If
    End Set
End Property

Uwagi

Jeśli ustawisz tę wartość na false, przyjmuje się, że dane w odpowiedniej kolumnie mają wartość inną niż null.

Uwaga

Ta właściwość jest duplikowana z DbType właściwości dla wygody. Metoda CreateDatabase używa tylko DbType właściwości . Z tego powodu należy określić, czy kolumna może również zawierać wartości null we DbType właściwości .

Dotyczy