MetadataWorkspace Constructors

Definition

Initializes a new instance of the MetadataWorkspace class.

Overloads

MetadataWorkspace()

Initializes a new instance of the MetadataWorkspace class.

MetadataWorkspace(IEnumerable<String>, IEnumerable<Assembly>)

Initializes a new instance of the MetadataWorkspace class using the specified paths and assemblies.

MetadataWorkspace()

Initializes a new instance of the MetadataWorkspace class.

public:
 MetadataWorkspace();
public MetadataWorkspace ();
Public Sub New ()

Applies to

MetadataWorkspace(IEnumerable<String>, IEnumerable<Assembly>)

Initializes a new instance of the MetadataWorkspace class using the specified paths and assemblies.

public:
 MetadataWorkspace(System::Collections::Generic::IEnumerable<System::String ^> ^ paths, System::Collections::Generic::IEnumerable<System::Reflection::Assembly ^> ^ assembliesToConsider);
public MetadataWorkspace (System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider);
new System.Data.Metadata.Edm.MetadataWorkspace : seq<string> * seq<System.Reflection.Assembly> -> System.Data.Metadata.Edm.MetadataWorkspace
Public Sub New (paths As IEnumerable(Of String), assembliesToConsider As IEnumerable(Of Assembly))

Parameters

paths
IEnumerable<String>

The paths to workspace metadata.

assembliesToConsider
IEnumerable<Assembly>

The names of assemblies used to construct workspace.

Applies to