Metodo EdmProperty.CreateEnum
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Crea una nuova proprietà enum.
Spazio dei nomi: System.Data.Entity.Core.Metadata.Edm
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")> _
Public Shared Function CreateEnum ( _
name As String, _
enumType As EnumType _
) As EdmProperty
'Utilizzo
Dim name As String
Dim enumType As EnumType
Dim returnValue As EdmProperty
returnValue = EdmProperty.CreateEnum(name, _
enumType)
[SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static EdmProperty CreateEnum(
string name,
EnumType enumType
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1011:ConsiderPassingBaseTypesAsParameters")]
public:
static EdmProperty^ CreateEnum(
String^ name,
EnumType^ enumType
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")>]
static member CreateEnum :
name:string *
enumType:EnumType -> EdmProperty
public static function CreateEnum(
name : String,
enumType : EnumType
) : EdmProperty
Parametri
- name
Tipo: System.String
Nome della proprietà.
- enumType
Tipo: System.Data.Entity.Core.Metadata.Edm.EnumType
Tipo della proprietà.
Valore restituito
Tipo: System.Data.Entity.Core.Metadata.Edm.EdmProperty
Proprietà appena creata.