MetadataTypeAttribute(Type) 构造函数

定义

初始化 MetadataTypeAttribute 类的新实例。

public:
 MetadataTypeAttribute(Type ^ metadataClassType);
public MetadataTypeAttribute (Type metadataClassType);
new System.ComponentModel.DataAnnotations.MetadataTypeAttribute : Type -> System.ComponentModel.DataAnnotations.MetadataTypeAttribute
Public Sub New (metadataClassType As Type)

参数

metadataClassType
Type

要引用的元数据类。

例外

metadataClassTypenull

示例

以下示例演示如何使用 MetadataTypeAttribute 将元数据类与实体分部类相关联。

[MetadataType(typeof(CustomerMetaData))]
public partial class Customer
{
}
<MetadataType(GetType(CustomerMetadata))> _
Partial Public Class Customer

End Class

适用于