Entity Framework中多个列的唯一键限制

编程入门 行业动态 更新时间:2024-10-10 06:12:55
本文介绍了Entity Framework中多个列的唯一键限制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

public class Entity { [ Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)] public string EntityId {get; set;} public int FirstColumn {get; set;} public int SecondColumn {get; set;} }

我想使 FirstColumn 和 SecondColumn 作为唯一的。

示例:

Id FirstColumn SecondColumn 1 1 1 = OK 2 2 1 = OK 3 3 3 = OK 5 3 1 =这个OK 4 3 3 = GRRRRR!这里错误

有没有办法?

解决方案

使用实体框架6.1,您现在可以执行此操作:

[Index(IX_FirstAndSecond,1,IsUnique = true)] public int FirstColumn {get;组; } [Index(IX_FirstAndSecond,2,IsUnique = true)] public int SecondColumn {get;组; }

属性中的第二个参数是可以在索引中指定列的顺序。 更多信息: MSDN

I'm using Entity Framework 5.0 Code First;

public class Entity { [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public string EntityId { get; set;} public int FirstColumn { get; set;} public int SecondColumn { get; set;} }

I want to make the combination between FirstColumn and SecondColumn as unique.

Example:

Id FirstColumn SecondColumn 1 1 1 = OK 2 2 1 = OK 3 3 3 = OK 5 3 1 = THIS OK 4 3 3 = GRRRRR! HERE ERROR

Is there anyway to do that?

解决方案

With Entity Framework 6.1, you can now do this:

[Index("IX_FirstAndSecond", 1, IsUnique = true)] public int FirstColumn { get; set; } [Index("IX_FirstAndSecond", 2, IsUnique = true)] public int SecondColumn { get; set; }

The second parameter in the attribute is where you can specify the order of the columns in the index. More information: MSDN

更多推荐

Entity Framework中多个列的唯一键限制

本文发布于:2023-10-19 02:03:35,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1506063.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:多个   一键   Entity   Framework

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!