EdmEntityType Constructor (String, String, IEdmEntityType, Boolean, Boolean)

Initializes a new instance of the EdmEntityType class.

Namespace:  Microsoft.Data.Edm.Library
Assembly:  Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)

Syntax

'Declaration
Public Sub New ( _
    namespaceName As String, _
    name As String, _
    baseType As IEdmEntityType, _
    isAbstract As Boolean, _
    isOpen As Boolean _
)
'Usage
Dim namespaceName As String 
Dim name As String 
Dim baseType As IEdmEntityType 
Dim isAbstract As Boolean 
Dim isOpen As Boolean 

Dim instance As New EdmEntityType(namespaceName, _
    name, baseType, isAbstract, isOpen)
public EdmEntityType(
    string namespaceName,
    string name,
    IEdmEntityType baseType,
    bool isAbstract,
    bool isOpen
)
public:
EdmEntityType(
    String^ namespaceName, 
    String^ name, 
    IEdmEntityType^ baseType, 
    bool isAbstract, 
    bool isOpen
)
new : 
        namespaceName:string * 
        name:string * 
        baseType:IEdmEntityType * 
        isAbstract:bool * 
        isOpen:bool -> EdmEntityType
public function EdmEntityType(
    namespaceName : String, 
    name : String, 
    baseType : IEdmEntityType, 
    isAbstract : boolean, 
    isOpen : boolean
)

Parameters

  • namespaceName
    Type: System.String
    The namespace the entity belongs to.
  • isAbstract
    Type: System.Boolean
    true to indicate an entity that cannot be instantiated; otherwise, false.
  • isOpen
    Type: System.Boolean
    true to indicate that the type is open; otherwise, false.

See Also

Reference

EdmEntityType Class

EdmEntityType Overload

Microsoft.Data.Edm.Library Namespace