Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为我的 MVC 模型创建一个数据注释来验证两个日期。我有一个开始日期和结束日期,结束日期应该大于开始日期。我设法创建了一个注释,但无法将值传递给它。有谁知道如何做到这一点?
谢谢
您可以将 DateTime 对象与此类型的另一个对象进行比较。如果 startdate 和 endate 都是 DateTime 对象,那么 Compare 方法应该可以解决问题。