Freigeben über


EdmProperty.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 ab oder legt fest, ob diese Eigenschaft eine Unicode-Eigenschaft ist.

Namespace:  System.Data.Entity.Core.Metadata.Edm
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

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

value = instance.IsUnicode

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

Eigenschaftswert

Typ: System.Nullable<Boolean>
true, wenn diese Eigenschaft eine Unicode-Eigenschaft ist, andernfalls false.

Siehe auch

Verweis

EdmProperty Klasse

System.Data.Entity.Core.Metadata.Edm-Namespace