Freigeben über


PropertyModel.IsUnicode-Eigenschaft

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Ruft einen Wert ab, der angibt, ob dieses Eigenschaftenmodell Unicode-Zeichen unterstützt, oder legt ihn fest. Gilt nur für Textdatentypen.

Namespace:  System.Data.Entity.Migrations.Model
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
Public Overridable Property IsUnicode As Nullable(Of Boolean)
    Get 
    Set
'Usage
Dim instance As PropertyModel 
Dim value As Nullable(Of Boolean)

value = instance.IsUnicode

instance.IsUnicode = value
public virtual Nullable<bool> IsUnicode { get; set; }
public:
virtual property Nullable<bool> IsUnicode {
    Nullable<bool> get ();
    void set (Nullable<bool> value);
}
abstract IsUnicode : Nullable<bool> with get, set 
override IsUnicode : Nullable<bool> with get, set
function get IsUnicode () : Nullable<boolean>
function set IsUnicode (value : Nullable<boolean>)

Eigenschaftswert

Typ: System.Nullable<Boolean>

Siehe auch

Verweis

PropertyModel Klasse

System.Data.Entity.Migrations.Model-Namespace