类型(元数据)
类型是顶级构造,它们构成 实体数据模型 (EDM) 的基础。ADO.NET 提供了 System.Data.Metadata.Edm 命名空间,其中包含的一组类型表示在 实体框架 的 EDM 中定义的概念。有关 实体框架 中使用的模型的更多信息,请参见 实体框架中的数据建模和元数据工作区概述。
如在元数据类型层次结构概述中所述,EdmType 是在 EDM 中表示类型的类的基类。顶层类型(如 SimpleType、StructuralType、CollectionType 和 RefType)派生自 EdmType。
SimpleType 描述基元类型。有关简单类型的更多信息,请参见简单类型(元数据)。
StructuralType 是在元数据类型层次结构中具有成员的所有类型的基类型。有关结构化类型的更多信息,请参见结构化类型(元数据)。
CollectionType 描述属于特定类型的实例的集合。
RefType 保留实体的地址,供使用该实体的操作使用。
实体数据模型类型主题也详细介绍有关在 EDM 中如何使用类型的信息。
下面的代码示例演示如何通过连接获取元数据工作区,然后使用该元数据工作区在指定模型中检索有关特定类型和所有其他类型的信息。这些代码示例使用 CSpace 和 SSpace 以指定模型。CSpace 表示概念性模型的默认名称。SSpace 表示存储模型的默认名称。请注意,元数据工作区是一个为检索元数据提供支持的运行时服务组件。
这些代码示例使用在 AdventureWorks 完整模型 (EDM) 主题中提供的 Adventureworks 模型。有关应用程序配置文件的示例,请参见使用 AdventureWorks 对象模型 (EDM)。
// The first example:
using System;
using System.Data;
using System.Data.EntityClient;
using System.Collections.ObjectModel;
using System.Data.Metadata.Edm;
class GetTypeExample
{
static void Main()
{
try
{
// Establish a connection to the underlying data provider by
// using the connection string specified in the config file.
using (EntityConnection connection =
new EntityConnection("Name=AdventureWorksEntities"))
{
// Open the connection.
connection.Open();
// Access the metadata workspace.
MetadataWorkspace workspace =
connection.GetMetadataWorkspace();
// Get an EntityType object by using the specified type name,
// the namespace name, and the model.
EdmType departmentType1 = workspace.GetType(
"Department", "AdventureWorksModel", DataSpace.CSpace);
Console.WriteLine(
"Type found in the conceptual model Name: {0}, {1} ",
departmentType1.Name,
departmentType1.NamespaceName);
// Get an EntityType object by using the specified type name,
// the namespace name, and the model.
EdmType departmentType2 = workspace.GetType(
"Department", "AdventureWorksModel.Store",
DataSpace.SSpace);
Console.WriteLine(
"Type found in the storage model Name: {0}, {1} ",
departmentType2.Name,
departmentType2.NamespaceName);
}
}
catch (MetadataException exceptionMetadata)
{
Console.WriteLine("MetadataException: {0}",
exceptionMetadata.Message);
}
catch (System.Data.MappingException exceptionMapping)
{
Console.WriteLine("MappingException: {0}",
exceptionMapping.Message);
}
}
}
// The second example:
using System;
using System.Data;
using System.Data.EntityClient;
using System.Data.Metadata.Edm;
using System.Collections.ObjectModel;
class GetTypesExample
{
static void Main()
{
try
{
// Establish a connection to the underlying data provider by
// using the connection string specified in the config file.
using (EntityConnection connection =
new EntityConnection("Name=AdventureWorksEntities"))
{
// Open the connection.
connection.Open();
// Access the metadata workspace.
MetadataWorkspace workspace =
connection.GetMetadataWorkspace();
// Get types from the conceptual model.
GetTypesFromModel(workspace, DataSpace.CSpace);
// Get types from the storage model.
GetTypesFromModel(workspace, DataSpace.SSpace);
}
}
catch (MetadataException exceptionMetadata)
{
Console.WriteLine("MetadataException: {0}",
exceptionMetadata.Message);
}
catch (System.Data.MappingException exceptionMapping)
{
Console.WriteLine("MappingException: {0}",
exceptionMapping.Message);
}
}
public static void GetTypesFromModel(
MetadataWorkspace workspace, DataSpace model)
{
// Get a collection of the EdmTypes.
// An EdmType class is the base class for the classes
// that represent types in the Entity Data Model (EDM).
ReadOnlyCollection<EdmType> types =
workspace.GetItems<EdmType>(model);
// Iterate through the collection to get each edm type,
// specifically each entity type.
foreach (EdmType item in types)
{
EntityType entityType = item as EntityType;
if (entityType != null)
{
Console.WriteLine("Type: {0}, Type in Model: {1} ",
item.GetType().FullName, item.FullName);
}
}
}
}
' The first example:
Imports System
Imports System.Data
Imports System.Data.EntityClient
Imports System.Data.Metadata.Edm
Class GetTypeExample
Shared Sub Main()
Try
' Establish a connection to the underlying data provider by
' using the connection string specified in the config file.
Using connection As EntityConnection = _
New EntityConnection("Name=AdventureWorksEntities")
' Open the conection.
connection.Open()
' Access the metadata workspace.
Dim workspace As MetadataWorkspace = _
connection.GetMetadataWorkspace
' Get an EntityType object by using the specified type name,
' the namespace name, and the model.
Dim departmentType1 As EdmType = _
workspace.GetType("Department", "AdventureWorksModel", _
DataSpace.CSpace)
Console.WriteLine( _
"Type found in the conceptual model Name: {0}, {1} ", _
departmentType1.Name, _
departmentType1.NamespaceName)
' Get an EntityType object by using the specified type name,
' the namespace name, and the model.
Dim departmentType2 As EdmType = _
workspace.GetType("Department", _
"AdventureWorksModel.Store", _
DataSpace.SSpace)
Console.WriteLine( _
"Type found in the storage model Name: {0}, {1} ", _
departmentType2.Name, _
departmentType2.NamespaceName)
End Using
Catch exceptionMetadata As MetadataException
Console.WriteLine("MetadataException: {0}", _
exceptionMetadata.Message)
Catch exceptionMapping As MappingException
Console.WriteLine("MappingException: {0}", _
exceptionMapping.Message)
End Try
End Sub
End Class
' The second example:
Imports System
Imports System.Collections.ObjectModel
Imports System.Data
Imports System.Data.EntityClient
Imports System.Data.Metadata.Edm
Class GetTypesExample
Shared Sub Main()
Try
' Establish a connection to the underlying data provider by
' using the connection string specified in the config file.
Using connection As EntityConnection = _
New EntityConnection("Name=AdventureWorksEntities")
' Open the conection.
connection.Open()
' Access the metadata workspace.
Dim workspace As MetadataWorkspace = _
connection.GetMetadataWorkspace
' Get types from the conceptual model.
GetTypesFromModel(workspace, DataSpace.CSpace)
' Get types from the storage model.
GetTypesFromModel(workspace, DataSpace.SSpace)
End Using
Catch exceptionMetadata As MetadataException
Console.WriteLine("MetadataException: {0}", _
exceptionMetadata.Message)
Catch exceptionMapping As MappingException
Console.WriteLine("MappingException: {0}", _
exceptionMapping.Message)
End Try
End Sub
Public Shared Sub GetTypesFromModel( _
ByVal workspace As MetadataWorkspace, ByVal model As DataSpace)
' Get a collection of the EdmTypes.
' An EdmType class is the base class for the classes
' that represent types in the Entity Data Model (EDM).
Dim types As ReadOnlyCollection(Of EdmType) = _
workspace.GetItems(Of EdmType)(model)
Dim item As EdmType
' Iterate through the collection to get each edm type,
' specifically each entity type.
For Each item In types
Dim entityType As EntityType = TryCast(item, EntityType)
If (Not entityType Is Nothing) Then
Console.WriteLine("Type: {0}, Type in Model: {1} ", _
item.GetType.FullName, item.FullName)
End If
Next
End Sub
End Class
本节内容
- 结构化类型(元数据)
描述结构类型和成员。
- 简单类型(元数据)
描述简单类型。