如何使用实体框架4.1向实体添加唯一的非主键字段?
我们首先使用 Entity Framework 4.1 代码。
我们已将主键设置为 UserId
的用户实体,并且需要 UserLogin
是唯一的。怎么办呢?
We are using Entity Framework 4.1 Code first.
We've got user entity with primary key set to UserId
and need UserLogin
to be unique. How can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实体框架不支持唯一约束。您可以使用 SQL 查询创建它们,以在初始化数据库时生成唯一的约束。为模型编写自定义初始值设定项并执行 SQL 命令来生成约束。
立即编辑
(EF 6.1 及以上)您可以轻松拥有独特的约束,
Entity Framework does not support Unique constraints. You can create them using a SQL Query to generate unique constrains when initializing the database. Write your custom initializer for the model and execute SQL command to generate constrain.
Edit
Now (EF 6.1 onwards )you can easily have unique constrains ,
查看独特的约束,我想这就是您正在寻找的?
http://weblogs.asp.net/manavi/archive/2011/01/23/associations-in-ef-code-first-ctp5-part-3-one-to-one-foreign-键关联.aspx
Check out the unique constraints, I think that's what you're looking for?
http://weblogs.asp.net/manavi/archive/2011/01/23/associations-in-ef-code-first-ctp5-part-3-one-to-one-foreign-key-associations.aspx