StoreItemCollection Constructors

Definition

Overloads

StoreItemCollection(IEnumerable<XmlReader>)

Initializes a new instance of the StoreItemCollection class using the specified XMLReader.

StoreItemCollection(EdmModel)

Initializes a new instances of the StoreItemCollection class.

StoreItemCollection(String[])

Initializes a new instance of the StoreItemCollection class using the specified file paths.

StoreItemCollection(IEnumerable<XmlReader>)

Initializes a new instance of the StoreItemCollection class using the specified XMLReader.

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

Parameters

xmlReaders
IEnumerable<XmlReader>

The XMLReader used to create metadata.

Applies to

StoreItemCollection(EdmModel)

Initializes a new instances of the StoreItemCollection class.

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

Parameters

model
EdmModel

The model of the StoreItemCollection.

Applies to

StoreItemCollection(String[])

Initializes a new instance of the StoreItemCollection class using the specified file paths.

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

Parameters

filePaths
String[]

The file paths used to create metadata.

Applies to