MetadataWorkspace Class

Definition

Runtime Metadata Workspace

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling")]
public class MetadataWorkspace
type MetadataWorkspace = class
Public Class MetadataWorkspace
Inheritance
MetadataWorkspace
Attributes

Constructors

MetadataWorkspace()

Initializes a new instance of the MetadataWorkspace class.

MetadataWorkspace(Func<EdmItemCollection>, Func<StoreItemCollection>, Func<StorageMappingItemCollection>)

Constructs a MetadataWorkspace with loaders for all item collections (ItemCollection) that come from traditional EDMX mapping. Default o-space and o/c mapping collections will be used. The item collection delegates are executed lazily when a given collection is used for the first time. It is acceptable to pass a delegate that returns null if the collection will never be used, but this is rarely done, and any attempt by EF to use the collection in such cases will result in an exception.

MetadataWorkspace(Func<EdmItemCollection>, Func<StoreItemCollection>, Func<StorageMappingItemCollection>, Func<ObjectItemCollection>)

Constructs a MetadataWorkspace with loaders for all item collections (ItemCollection) needed by EF except the o/c mapping which will be created automatically based on the given o-space and c-space loaders. The item collection delegates are executed lazily when a given collection is used for the first time. It is acceptable to pass a delegate that returns null if the collection will never be used, but this is rarely done, and any attempt by EF to use the collection in such cases will result in an exception.

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

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

Properties

MaximumEdmVersionSupported

The Max EDM version thats going to be supported by the runtime.

Methods

ClearCache()

Clears all the metadata cache entries.

CreateEntitySqlParser()

Creates an EntitySqlParser configured to use the CSpace data space.

CreateQueryCommandTree(DbExpression)

Creates a new DbQueryCommandTree bound to this metadata workspace based on the specified query expression.

GetEdmSpaceType(EnumType)

Returns a StructuralType object that represents the EdmType that matches the type supplied by the parameter objectSpaceType .

GetEdmSpaceType(StructuralType)

Returns a StructuralType object that represents the EdmType that matches the type supplied by the parameter objectSpaceType .

GetEntityContainer(String, Boolean, DataSpace)

Returns an EntityContainer object by using the specified entity container name and the data model.

GetEntityContainer(String, DataSpace)

Returns an EntityContainer object by using the specified entity container name and the data model.

GetFunctions(String, String, DataSpace)

Returns all the overloads of the functions by using the specified name, namespace name, and data model.

GetFunctions(String, String, DataSpace, Boolean)

Returns all the overloads of the functions by using the specified name, namespace name, and data model.

GetItem<T>(String, Boolean, DataSpace)

Returns an item by using the specified identity and the data model.

GetItem<T>(String, DataSpace)

Returns an item by using the specified identity and the data model.

GetItemCollection(DataSpace)

Gets MetadataWorkspace items.

GetItems(DataSpace)

Gets all the items in the specified data model.

GetItems<T>(DataSpace)

Gets all the items in the specified data model.

GetObjectSpaceType(EnumType)

Returns a StructuralType object that represents the object space type that matches the type supplied by the parameter edmSpaceType .

GetObjectSpaceType(StructuralType)

Returns a StructuralType object that represents the object space type that matches the type supplied by the parameter edmSpaceType .

GetPrimitiveTypes(DataSpace)

Returns the list of primitive types in the specified data model.

GetRelevantMembersForUpdate(EntitySetBase, EntityTypeBase, Boolean)

Returns members of a given EntitySet/ EntityType for which original values are needed when modifying an entity.

GetRequiredOriginalValueMembers(EntitySetBase, EntityTypeBase)
Obsolete.

Gets original value members from an entity set and entity type.

GetType(String, String, Boolean, DataSpace)

Returns an EdmType object by using the specified type name, namespace name, and data model.

GetType(String, String, DataSpace)

Returns an EdmType object by using the specified type name, namespace name, and data model.

LoadFromAssembly(Assembly)

Loads metadata from the given assembly.

LoadFromAssembly(Assembly, Action<String>)

Loads metadata from the given assembly.

RegisterItemCollection(ItemCollection)
Obsolete.

Registers the item collection with each associated data model.

TryGetEdmSpaceType(EnumType, EnumType)

Returns a EnumType object via the out parameter edmSpaceType that represents the EdmType that matches the type supplied by the parameter objectSpaceType .

TryGetEdmSpaceType(StructuralType, StructuralType)

Returns a StructuralType object via the out parameter edmSpaceType that represents the EdmType that matches the type supplied by the parameter objectSpaceType .

TryGetEntityContainer(String, Boolean, DataSpace, EntityContainer)

Returns an EntityContainer object by using the specified entity container name and the data model.

TryGetEntityContainer(String, DataSpace, EntityContainer)

Returns an EntityContainer object by using the specified entity container name and the data model.

TryGetItem<T>(String, Boolean, DataSpace, T)

Returns an item by using the specified identity and the data model.

TryGetItem<T>(String, DataSpace, T)

Returns an item by using the specified identity and the data model.

TryGetItemCollection(DataSpace, ItemCollection)

Tests the retrieval of MetadataWorkspace.

TryGetObjectSpaceType(EnumType, EnumType)

Returns a EnumType object via the out parameter objectSpaceType that represents the type that matches the EdmType supplied by the parameter edmSpaceType .

TryGetObjectSpaceType(StructuralType, StructuralType)

Returns a StructuralType object via the out parameter objectSpaceType that represents the type that matches the EdmType supplied by the parameter edmSpaceType .

TryGetType(String, String, Boolean, DataSpace, EdmType)

Returns an EdmType object by using the specified type name, namespace name, and data model.

TryGetType(String, String, DataSpace, EdmType)

Returns an EdmType object by using the specified type name, namespace name, and data model.

Applies to