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.
如何在 EF4 CodeFirst 中指定检查约束。
示例:我有一个字符串属性,我只能为其设置特定值。
EF 代码首先没有任何等效的检查约束。如果您想在数据库中有检查约束,您可以使用自定义数据库初始化程序并执行自定义 SQL 来更改表并添加检查约束(我在此处描述了唯一索引的类似方法),或者如果您已经在使用 EF 代码优先迁移,您可以Up在基于代码的迁移中为您的方法添加约束创建。
Up