我正在尝试使用代码优先构建EF实体,并使用流畅的API构建EntityTypeConfiguration
。使用Unique Constraint创建主键很容易,但不是这样。我看到旧帖子建议为此执行本机SQL命令,但这似乎打败了目的。这可能与EF6有关吗?
答案 0 :(得分:260)
在 EF6.2 上,您可以使用HasIndex()
添加通过Fluent API进行迁移的索引。
https://github.com/aspnet/EntityFramework6/issues/274
示例强>
modelBuilder
.Entity<User>()
.HasIndex(u => u.Email)
.IsUnique();
在 EF6.1 之后,您可以使用IndexAnnotation()
在您的Fluent API中添加迁移索引。
http://msdn.microsoft.com/en-us/data/jj591617.aspx#PropertyIndex
您必须添加以下参考:
using System.Data.Entity.Infrastructure.Annotations;
基本示例
这是一个简单的用法,在User.FirstName
属性
modelBuilder
.Entity<User>()
.Property(t => t.FirstName)
.HasColumnAnnotation(IndexAnnotation.AnnotationName, new IndexAnnotation(new IndexAttribute()));
实际例子:
这是一个更现实的例子。它在多个属性上添加唯一索引:User.FirstName
和User.LastName
,索引名称为&#34; IX_FIrstNameLastName&#34;
modelBuilder
.Entity<User>()
.Property(t => t.FirstName)
.IsRequired()
.HasMaxLength(60)
.HasColumnAnnotation(
IndexAnnotation.AnnotationName,
new IndexAnnotation(
new IndexAttribute("IX_FirstNameLastName", 1) { IsUnique = true }));
modelBuilder
.Entity<User>()
.Property(t => t.LastName)
.IsRequired()
.HasMaxLength(60)
.HasColumnAnnotation(
IndexAnnotation.AnnotationName,
new IndexAnnotation(
new IndexAttribute("IX_FirstNameLastName", 2) { IsUnique = true }));
答案 1 :(得分:133)
作为Yorro答案的补充,它也可以通过使用属性来完成。
int
类型唯一键组合的示例:
[Index("IX_UniqueKeyInt", IsUnique = true, Order = 1)]
public int UniqueKeyIntPart1 { get; set; }
[Index("IX_UniqueKeyInt", IsUnique = true, Order = 2)]
public int UniqueKeyIntPart2 { get; set; }
如果数据类型为string
,则必须添加MaxLength
属性:
[Index("IX_UniqueKeyString", IsUnique = true, Order = 1)]
[MaxLength(50)]
public string UniqueKeyStringPart1 { get; set; }
[Index("IX_UniqueKeyString", IsUnique = true, Order = 2)]
[MaxLength(50)]
public string UniqueKeyStringPart2 { get; set; }
如果存在域/存储模型分离问题,可以选择使用Metadatatype
属性/类:https://msdn.microsoft.com/en-us/library/ff664465%28v=pandp.50%29.aspx?f=255&MSPPError=-2147217396
快速控制台应用示例:
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
namespace EFIndexTest
{
class Program
{
static void Main(string[] args)
{
using (var context = new AppDbContext())
{
var newUser = new User { UniqueKeyIntPart1 = 1, UniqueKeyIntPart2 = 1, UniqueKeyStringPart1 = "A", UniqueKeyStringPart2 = "A" };
context.UserSet.Add(newUser);
context.SaveChanges();
}
}
}
[MetadataType(typeof(UserMetadata))]
public class User
{
public int Id { get; set; }
public int UniqueKeyIntPart1 { get; set; }
public int UniqueKeyIntPart2 { get; set; }
public string UniqueKeyStringPart1 { get; set; }
public string UniqueKeyStringPart2 { get; set; }
}
public class UserMetadata
{
[Index("IX_UniqueKeyInt", IsUnique = true, Order = 1)]
public int UniqueKeyIntPart1 { get; set; }
[Index("IX_UniqueKeyInt", IsUnique = true, Order = 2)]
public int UniqueKeyIntPart2 { get; set; }
[Index("IX_UniqueKeyString", IsUnique = true, Order = 1)]
[MaxLength(50)]
public string UniqueKeyStringPart1 { get; set; }
[Index("IX_UniqueKeyString", IsUnique = true, Order = 2)]
[MaxLength(50)]
public string UniqueKeyStringPart2 { get; set; }
}
public class AppDbContext : DbContext
{
public virtual DbSet<User> UserSet { get; set; }
}
}
答案 2 :(得分:17)
这是一种更流利地设置唯一索引的扩展方法:
public static class MappingExtensions
{
public static PrimitivePropertyConfiguration IsUnique(this PrimitivePropertyConfiguration configuration)
{
return configuration.HasColumnAnnotation("Index", new IndexAnnotation(new IndexAttribute { IsUnique = true }));
}
}
用法:
modelBuilder
.Entity<Person>()
.Property(t => t.Name)
.IsUnique();
将生成迁移,例如:
public partial class Add_unique_index : DbMigration
{
public override void Up()
{
CreateIndex("dbo.Person", "Name", unique: true);
}
public override void Down()
{
DropIndex("dbo.Person", new[] { "Name" });
}
}
Src:Creating Unique Index with Entity Framework 6.1 fluent API
答案 3 :(得分:16)
@ coni2k的回答是正确的,但你必须添加constraints = {
audio: true,
video: { width: 240, height: 240 }
};
属性才能正常工作,否则你将获得无效的密钥异常(示例如下)。
[StringLength]
答案 4 :(得分:10)
不幸的是,实体框架不支持此功能。这是EF 6的路线图,但它被推迟了:Workitem 299: Unique Constraints (Unique Indexes)
答案 5 :(得分:0)
同时有这样的:
很抱歉没有复制代码,这有点长。
答案 6 :(得分:0)
modelBuilder.Property(x => x.FirstName).IsUnicode().IsRequired().HasMaxLength(50);