Share via


EdmItemCollection Constructors

Definition

Overloads

EdmItemCollection(IEnumerable<XmlReader>)

Initializes a new instance of the EdmItemCollection class by using the collection of the XMLReader objects where the conceptual schema definition language (CSDL) files exist.

EdmItemCollection(EdmModel)

Initializes a new instance of the EdmItemCollection class.

EdmItemCollection(String[])

Initializes a new instance of the EdmItemCollection class by using the paths where the conceptual schema definition language (CSDL) files exist.

EdmItemCollection(IEnumerable<XmlReader>)

Initializes a new instance of the EdmItemCollection class by using the collection of the XMLReader objects where the conceptual schema definition language (CSDL) files exist.

public EdmItemCollection (System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders);
new System.Data.Entity.Core.Metadata.Edm.EdmItemCollection : seq<System.Xml.XmlReader> -> System.Data.Entity.Core.Metadata.Edm.EdmItemCollection
Public Sub New (xmlReaders As IEnumerable(Of XmlReader))

Parameters

xmlReaders
IEnumerable<XmlReader>

The collection of the XMLReader objects where the conceptual schema definition language (CSDL) files exist.

Applies to

EdmItemCollection(EdmModel)

Initializes a new instance of the EdmItemCollection class.

public EdmItemCollection (System.Data.Entity.Core.Metadata.Edm.EdmModel model);
new System.Data.Entity.Core.Metadata.Edm.EdmItemCollection : System.Data.Entity.Core.Metadata.Edm.EdmModel -> System.Data.Entity.Core.Metadata.Edm.EdmItemCollection
Public Sub New (model As EdmModel)

Parameters

model
EdmModel

The entity data model.

Applies to

EdmItemCollection(String[])

Initializes a new instance of the EdmItemCollection class by using the paths where the conceptual schema definition language (CSDL) files exist.

public EdmItemCollection (params string[] filePaths);
new System.Data.Entity.Core.Metadata.Edm.EdmItemCollection : string[] -> System.Data.Entity.Core.Metadata.Edm.EdmItemCollection
Public Sub New (ParamArray filePaths As String())

Parameters

filePaths
String[]

The paths where the conceptual schema definition language (CSDL) files exist.

Applies to