I have two properties:
public int? Inicio {get; set;}
public int? Final {get; set;}
Both accept nulls and are not required. I wanted to check if the two are null using Data Annotation
. The operation would look something like Compare Data Annotation. , but checking if the value of the two properties are null.