回答:
でEF6.2は、使用することができますHasIndex()
流暢なAPIを介して移行のためにインデックスを追加します。
https://github.com/aspnet/EntityFramework6/issues/274
例
modelBuilder
.Entity<User>()
.HasIndex(u => u.Email)
.IsUnique();
でEF6.1以降は、使用することができますIndexAnnotation()
あなたの流暢な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
、インデックス名「IX_FirstNameLastName」と
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 }));
IndexAnnotation.AnnotationName
new IndexAttribute() { IsUnique = true }
。それ以外の場合は、通常の(一意でない)インデックスのみを作成します。
ヨロの答えに加えて、属性を使用して行うこともできます。
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; }
}
}
一意のインデックスをより滑らかに設定するための拡張メソッドを次に示します。
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" });
}
}
@ coni2kの答えは正しいですが、動作さ[StringLength]
せるには属性を追加する必要があります。そうしないと、無効なキーの例外が発生します(以下の例)。
[StringLength(65)]
[Index("IX_FirstNameLastName", 1, IsUnique = true)]
public string FirstName { get; set; }
[StringLength(65)]
[Index("IX_FirstNameLastName", 2, IsUnique = true)]
public string LastName { get; set; }
残念ながら、これはEntity Frameworkではサポートされていません。それはEF 6のロードマップにありましたが、押し戻されました:作業項目299:一意の制約(一意のインデックス)