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

適用対象