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.
我喜欢使用数据注释来指定模型中字段验证的想法。但是在 EF 中,我注意到它希望在 DB 级别实现这一点,即 [Required] 成为“非空”字段。是否可以让应用程序应用此验证而不更改数据库?
谢谢,
埃德
您可以做的是为视图使用单独的视图模型,为数据库使用单独的实体类。您可以使用auto mapper 之类的库来映射这些对象。