次のモデルクラスがあります
public bool Saturday{ get; set; }
public bool Sunday{ get; set; }
public string Holiday{ get; set; }
土曜日と日曜日の両方のフィールドを使用して、Holiday フィールドに RequiredIf 条件を使用したいと考えています。次のように使用できますか
[RequiredIf("Sunday,Saturday",false)]
public string Holiday{ get; set; }
モデルクラスで RequiredIf 条件を使用する方法がわからないので、誰か助けてください