クイック質問...C#データ注釈
私はインターフェイスでの表記を入れた場合...
セイ[必須]
することができます私はOMMITそのためのC#クラスで表記プロパティ?インターフェイスでのデータ注釈を配置する
すなわちすることができます私は...
Interface IFoo
{
[Required]
string Bar {get; set;}
}
Class Foo : IFoo
{
string Bar {get; set;}
}
または私はちょうどインターフェイスでの表記を入れて、これを実行しないようにする必要があります...
Interface IFoo
{
string Bar {get; set;}
}
Class Foo : IFoo
{
[Required]
string Bar {get; set;}
}
クラスに参加する必要があります。参照:http://bradwilson.typepad.com/blog/2011/08/interface-attributes-class-attributes.html –