MetadataTypeAttribute(Type) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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
要引用的元数据类。
例外
metadataClassType
为 null
。
示例
以下示例演示如何使用 MetadataTypeAttribute 将元数据类与实体分部类相关联。
[MetadataType(typeof(CustomerMetaData))]
public partial class Customer
{
}
<MetadataType(GetType(CustomerMetadata))> _
Partial Public Class Customer
End Class