framework foreign first example entitytypeconfiguration data code c# entity-framework-4 ef-code-first data-annotations fluent-interface

c# - foreign - entitytypeconfiguration



Código de entidad de Entity First Fluent Api: Agregar índices a las columnas (14)

Bueno, encontré una solución en línea y la adapté para satisfacer mis necesidades, aquí está:

[AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = true)] public class IndexAttribute : Attribute { public IndexAttribute(string name, bool unique = false) { this.Name = name; this.IsUnique = unique; } public string Name { get; private set; } public bool IsUnique { get; private set; } } public class IndexInitializer<T> : IDatabaseInitializer<T> where T : DbContext { private const string CreateIndexQueryTemplate = "CREATE {unique} INDEX {indexName} ON {tableName} ({columnName});"; public void InitializeDatabase(T context) { const BindingFlags PublicInstance = BindingFlags.Public | BindingFlags.Instance; Dictionary<IndexAttribute, List<string>> indexes = new Dictionary<IndexAttribute, List<string>>(); string query = string.Empty; foreach (var dataSetProperty in typeof(T).GetProperties(PublicInstance).Where(p => p.PropertyType.Name == typeof(DbSet<>).Name)) { var entityType = dataSetProperty.PropertyType.GetGenericArguments().Single(); TableAttribute[] tableAttributes = (TableAttribute[])entityType.GetCustomAttributes(typeof(TableAttribute), false); indexes.Clear(); string tableName = tableAttributes.Length != 0 ? tableAttributes[0].Name : dataSetProperty.Name; foreach (PropertyInfo property in entityType.GetProperties(PublicInstance)) { IndexAttribute[] indexAttributes = (IndexAttribute[])property.GetCustomAttributes(typeof(IndexAttribute), false); NotMappedAttribute[] notMappedAttributes = (NotMappedAttribute[])property.GetCustomAttributes(typeof(NotMappedAttribute), false); if (indexAttributes.Length > 0 && notMappedAttributes.Length == 0) { ColumnAttribute[] columnAttributes = (ColumnAttribute[])property.GetCustomAttributes(typeof(ColumnAttribute), false); foreach (IndexAttribute indexAttribute in indexAttributes) { if (!indexes.ContainsKey(indexAttribute)) { indexes.Add(indexAttribute, new List<string>()); } if (property.PropertyType.IsValueType || property.PropertyType == typeof(string)) { string columnName = columnAttributes.Length != 0 ? columnAttributes[0].Name : property.Name; indexes[indexAttribute].Add(columnName); } else { indexes[indexAttribute].Add(property.PropertyType.Name + "_" + GetKeyName(property.PropertyType)); } } } } foreach (IndexAttribute indexAttribute in indexes.Keys) { query += CreateIndexQueryTemplate.Replace("{indexName}", indexAttribute.Name) .Replace("{tableName}", tableName) .Replace("{columnName}", string.Join(", ", indexes[indexAttribute].ToArray())) .Replace("{unique}", indexAttribute.IsUnique ? "UNIQUE" : string.Empty); } } if (context.Database.CreateIfNotExists()) { context.Database.ExecuteSqlCommand(query); } } private string GetKeyName(Type type) { PropertyInfo[] propertyInfos = type.GetProperties(BindingFlags.FlattenHierarchy | BindingFlags.Instance | BindingFlags.Public); foreach (PropertyInfo propertyInfo in propertyInfos) { if (propertyInfo.GetCustomAttribute(typeof(KeyAttribute), true) != null) return propertyInfo.Name; } throw new Exception("No property was found with the attribute Key"); } }

Luego sobrecarga OnModelCreating en tu dbcontext

protected override void OnModelCreating(DbModelBuilder modelBuilder) { Database.SetInitializer(new IndexInitializer<MyContext>()); base.OnModelCreating(modelBuilder); }

Aplique el atributo de índice a su tipo de Entidad, con esta solución puede tener múltiples campos en el mismo índice, solo use el mismo nombre y sea único.

Estoy ejecutando EF 4.2 CF y quiero crear índices en ciertas columnas en mis objetos POCO.

Como ejemplo digamos que tenemos esta clase de empleado:

public class Employee { public int EmployeeID { get; set; } public string EmployeeCode { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public DateTime HireDate { get; set; } }

A menudo hacemos búsquedas de empleados por su EmployeeCode y dado que hay muchos empleados, sería bueno indexarlos por motivos de rendimiento.

¿Podemos hacer esto con una API fluida de alguna manera? o tal vez anotaciones de datos?

Sé que es posible ejecutar comandos sql algo como esto:

context.Database.ExecuteSqlCommand("CREATE INDEX IX_NAME ON ...");

Me gustaría mucho evitar el SQL sin formato así.

Sé que esto no existe, pero buscando algo en esa línea:

class EmployeeConfiguration : EntityTypeConfiguration<Employee> { internal EmployeeConfiguration() { this.HasIndex(e => e.EmployeeCode) .HasIndex(e => e.FirstName) .HasIndex(e => e.LastName); } }

o tal vez usando System.ComponentModel.DataAnnotations el POCO podría verse así (de nuevo sé que esto no existe):

public class Employee { public int EmployeeID { get; set; } [Indexed] public string EmployeeCode { get; set; } [Indexed] public string FirstName { get; set; } [Indexed] public string LastName { get; set; } public DateTime HireDate { get; set; } }

Alguien tiene alguna idea sobre cómo hacer esto, o si hay algún plan para implementar una forma de hacerlo, el código de la primera manera?

ACTUALIZACIÓN: como se menciona en la respuesta de Robba, esta característica se implementa en EF versión 6.1


Descubrí un problema con la respuesta que dio @highace: la migración descendente usa la anulación incorrecta para DropIndex. Aquí esta lo que hice:

  1. Para cumplir con la limitación de Sql Server en columnas de índice (900 bytes) reduje el tamaño de un par de campos en mi modelo
  2. Agregué la migración usando Add-Migration "Add Unique Indexes"
  3. Agregué manualmente los métodos CreateIndex y DropIndex a la migración. Utilicé la anulación que toma el nombre del índice para el índice de una sola columna. Utilicé la anulación que toma una matriz de nombres de columnas donde el índice abarca más de una columna

Y aquí está el código con ejemplos de ambas anulaciones de cada método:

public partial class AddUniqueIndexes : DbMigration { public override void Up() { //Sql Server limits indexes to 900 bytes, //so we need to ensure cumulative field sizes do not exceed this //otherwise inserts and updates could be prevented //http://www.sqlteam.com/article/included-columns-sql-server-2005 AlterColumn("dbo.Answers", "Text", c => c.String(nullable: false, maxLength: 400)); AlterColumn("dbo.ConstructionTypes", "Name", c => c.String(nullable: false, maxLength: 300)); //[IX_Text] is the name that Entity Framework would use by default // even if it wasn''t specified here CreateIndex("dbo.Answers", "Text", unique: true, name: "IX_Text"); //Default name is [IX_Name_OrganisationID] CreateIndex("dbo.ConstructionTypes", new string[] { "Name", "OrganisationID" }, unique: true); } public override void Down() { //Drop Indexes before altering fields //(otherwise it will fail because of dependencies) //Example of dropping an index based on its name DropIndex("dbo.Answers", "IX_Text"); //Example of dropping an index based on the columns it targets DropIndex("dbo.ConstructionTypes", new string[] { "Name", "OrganisationID" }); AlterColumn("dbo.ConstructionTypes", "Name", c => c.String(nullable: false)); AlterColumn("dbo.Answers", "Text", c => c.String(nullable: false, maxLength: 500)); }


Después de que se introdujo Migrations en EF 4.3, ahora puede agregar índices al modificar o crear una tabla. Aquí hay un extracto de la Guía de migraciones basadas en código de EF 4.3 del blog del equipo ADO.NET

namespace MigrationsCodeDemo.Migrations { using System.Data.Entity.Migrations; public partial class AddPostClass : DbMigration { public override void Up() { CreateTable( "Posts", c => new { PostId = c.Int(nullable: false, identity: true), Title = c.String(maxLength: 200), Content = c.String(), BlogId = c.Int(nullable: false), }) .PrimaryKey(t => t.PostId) .ForeignKey("Blogs", t => t.BlogId, cascadeDelete: true) .Index(t => t.BlogId) .Index(p => p.Title, unique: true); AddColumn("Blogs", "Rating", c => c.Int(nullable: false, defaultValue: 3)); } public override void Down() { DropIndex("Posts", new[] { "BlogId" }); DropForeignKey("Posts", "BlogId", "Blogs"); DropColumn("Blogs", "Rating"); DropTable("Posts"); } } }

Esta es una buena forma fuertemente tipada para agregar los índices, que era lo que estaba buscando cuando publiqué la pregunta por primera vez.


Extendiendo la respuesta de Tsuushin arriba para soportar múltiples columnas y restricciones únicas:

private void CreateIndex(RBPContext context, string field, string table, bool unique = false) { context.Database.ExecuteSqlCommand(String.Format("CREATE {0}NONCLUSTERED INDEX IX_{1}_{2} ON {1} ({3})", unique ? "UNIQUE " : "", table, field.Replace(",","_"), field)); }


La extensión de anotaciones de datos de jwsadler fue una buena opción para nosotros. Usamos Anotaciones para influir en el tratamiento de una clase o propiedad y Fluent API para cambios globales.

Nuestras anotaciones cubren índices (únicos y no únicos) más los valores predeterminados de getdate () y (1). El ejemplo de código muestra cómo lo aplicamos a nuestra situación. Todas nuestras clases heredan de una clase base. Esta implementación hace muchas suposiciones porque tenemos un modelo bastante simple. Estamos utilizando Entity Framework 6.0.1. Se han incluido muchos comentarios.

using System; using System.Linq; using System.Data.Entity; using System.Data.Entity.Infrastructure; namespace YourNameSpace { public enum SqlOption { Active = 1, GetDate = 2, Index = 3, Unique = 4, } [AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = true)] public class SqlAttribute : Attribute { public SqlAttribute(SqlOption selectedOption = SqlOption.Index) { this.Option = selectedOption; } public SqlOption Option {get; set;} } // See enum above, usage examples: [Sql(SqlOption.Unique)] [Sql(SqlOption.Index)] [Sql(SqlOption.GetDate)] public class SqlInitializer<T> : IDatabaseInitializer<T> where T : DbContext { // Create templates for the DDL we want generate const string INDEX_TEMPLATE = "CREATE NONCLUSTERED INDEX IX_{columnName} ON [dbo].[{tableName}] ([{columnName}]);"; const string UNIQUE_TEMPLATE = "CREATE UNIQUE NONCLUSTERED INDEX UQ_{columnName} ON [dbo].[{tableName}] ([{columnName}]);"; const string GETDATE_TEMPLATE = "ALTER TABLE [dbo].[{tableName}] ADD DEFAULT (getdate()) FOR [{columnName}];"; const string ACTIVE_TEMPLATE = "ALTER TABLE [dbo].[{tableName}] ADD DEFAULT (1) FOR [{columnName}];"; // Called by Database.SetInitializer(new IndexInitializer< MyDBContext>()); in MyDBContext.cs public void InitializeDatabase(T context) { // To be used for the SQL DDL that I generate string sql = string.Empty; // All of my classes are derived from my base class, Entity var baseClass = typeof(Entity); // Get a list of classes in my model derived from my base class var modelClasses = AppDomain.CurrentDomain.GetAssemblies().ToList(). SelectMany(s => s.GetTypes()).Where(baseClass.IsAssignableFrom); // For debugging only - examine the SQL DDL that Entity Framework is generating // Manipulating this is discouraged. var generatedDDSQL = ((IObjectContextAdapter)context).ObjectContext.CreateDatabaseScript(); // Define which Annotation Attribute we care about (this class!) var annotationAttribute = typeof(SqlAttribute); // Generate a list of concrete classes in my model derived from // Entity class since we follow Table Per Concrete Class (TPC). var concreteClasses = from modelClass in modelClasses where !modelClass.IsAbstract select modelClass; // Iterate through my model''s concrete classes (will be mapped to tables) foreach (var concreteClass in concreteClasses) { // Calculate the table name - could get the table name from list of DbContext''s properties // to be more correct (but this is sufficient in my case) var tableName = concreteClass.Name + "s"; // Get concrete class''s properties that have this annotation var propertiesWithAnnotations = concreteClass.GetProperties().Where(prop => Attribute.IsDefined(prop, annotationAttribute)); foreach (var annotatedProperty in propertiesWithAnnotations) { var columnName = annotatedProperty.Name; var annotationProperties = annotatedProperty.GetCustomAttributes(annotationAttribute, true).ToList(); foreach (SqlAttribute annotationProperty in annotationProperties) { // Generate the appropriate SQL DLL based on the attribute selected switch (annotationProperty.Option) { case SqlOption.Active: // Default value of true plus an index (for my case) sql += ACTIVE_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); sql += INDEX_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); break; case SqlOption.GetDate: // GetDate plus an index (for my case) sql += GETDATE_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); sql += INDEX_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); break; case SqlOption.Index: // Default for empty annotations for example [Sql()] sql += INDEX_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); break; case SqlOption.Unique: sql += UNIQUE_TEMPLATE.Replace("{tableName}", tableName).Replace("{columnName}", columnName); break; } // switch } // foreach annotationProperty } // foreach annotatedProperty } // foreach concreteClass // Would have been better not to go through all the work of generating the SQL // if we weren''t going to use it, but putting it here makes it easier to follow. if (context.Database.CreateIfNotExists()) context.Database.ExecuteSqlCommand(sql); } // InitializeDatabase } // SqlInitializer } // Namespace

Aquí está nuestro contexto:

using System; using System.Data.Entity; using System.Data.Entity.ModelConfiguration.Conventions; namespace YourNameSpace { public class MyDBContext : DbContext { protected override void OnModelCreating(DbModelBuilder modelBuilder) { // Only including my concrete classes here as we''re following Table Per Concrete Class (TPC) public virtual DbSet<Attendance> Attendances { get; set; } public virtual DbSet<Course> Courses { get; set; } public virtual DbSet<Location> Locations { get; set; } public virtual DbSet<PaymentMethod> PaymentMethods { get; set; } public virtual DbSet<Purchase> Purchases { get; set; } public virtual DbSet<Student> Students { get; set; } public virtual DbSet<Teacher> Teachers { get; set; } // Process the SQL Annotations Database.SetInitializer(new SqlInitializer<MyDBContext>()); base.OnModelCreating(modelBuilder); // Change all datetime columns to datetime2 modelBuilder.Properties<DateTime>().Configure(c => c.HasColumnType("datetime2")); // Turn off cascading deletes modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>(); } } }


Para EF7 puedes usar el método hasIndex() . También podemos establecer un índice agrupado y no agrupado. Por defecto, la clave principal se agrupará. Podemos cambiar ese comportamiento también.

supplierItemEntity.HasKey(supplierItem => supplierItem.SupplierItemId).ForSqlServerIsClustered(false); supplierItemEntity.HasIndex(s => new { s.ItemId }).ForSqlServerIsClustered(true);


Para aprovechar la respuesta de frozen, puede codificarla a mano en una migración usted mismo.

Primero, vaya a la consola de Package Manager y cree una nueva migración con add-migration , luego dele un nombre. Aparecerá una migración en blanco. Pegue esto en:

public override void Up() { CreateIndex("TableName", "ColumnName"); } public override void Down() { DropIndex("TableName",new[] {"ColumnName"}); }

Tenga en cuenta que si está utilizando un campo de cadena, también debe tener un límite de 450 caracteres.


Para cualquiera que use Entity Framework 6.1+, puede hacer lo siguiente con una API apta:

modelBuilder .Entity<Department>() .Property(t => t.Name) .HasColumnAnnotation("Index", new IndexAnnotation(new IndexAttribute()));

Lea más en la documentation .


Para desarrollar aún más estas excelentes respuestas, agregamos el siguiente código para permitir que el atributo Index se recoja de un tipo de metadata asociado. Para ver todos los detalles, consulte la publicación de mi blog , pero en resumen, aquí están los detalles.

Los tipos de metadatos se usan así:

[MetadataType(typeof(UserAccountAnnotations))] public partial class UserAccount : IDomainEntity { [Key] public int Id { get; set; } // Unique ID sealed class UserAccountAnnotations { [Index("IX_UserName", unique: true)] public string UserName { get; set; } } }

En este ejemplo, el tipo de metadata es una clase anidada, pero no tiene que ser así, puede ser de cualquier tipo. La coincidencia de propiedades solo se realiza por nombre, por lo que el tipo de metadato solo debe tener una propiedad con el mismo nombre, y las anotaciones de datos aplicadas deben aplicarse entonces a la clase de entidad asociada. Esto no funcionó en la solución original porque no verifica el tipo de metadatos asociado. Hemos sondeado el siguiente método de ayuda:

/// <summary> /// Gets the index attributes on the specified property and the same property on any associated metadata type. /// </summary> /// <param name="property">The property.</param> /// <returns>IEnumerable{IndexAttribute}.</returns> IEnumerable<IndexAttribute> GetIndexAttributes(PropertyInfo property) { Type entityType = property.DeclaringType; var indexAttributes = (IndexAttribute[])property.GetCustomAttributes(typeof(IndexAttribute), false); var metadataAttribute = entityType.GetCustomAttribute(typeof(MetadataTypeAttribute)) as MetadataTypeAttribute; if (metadataAttribute == null) return indexAttributes; // No metadata type Type associatedMetadataType = metadataAttribute.MetadataClassType; PropertyInfo associatedProperty = associatedMetadataType.GetProperty(property.Name); if (associatedProperty == null) return indexAttributes; // No metadata on the property var associatedIndexAttributes = (IndexAttribute[])associatedProperty.GetCustomAttributes(typeof(IndexAttribute), false); return indexAttributes.Union(associatedIndexAttributes); }


Puede crear un atributo llamado indexado (como sugirió), que luego se recoge en un inicializador personalizado.

Creé el siguiente atributo:

[AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = true)] public class IndexAttribute : Attribute { public IndexAttribute(bool isUnique = false, bool isClustered = false, SortOrder sortOrder = SortOrder.Ascending) { IsUnique = isUnique; IsClustered = isClustered; SortOrder = sortOrder == SortOrder.Unspecified ? SortOrder.Ascending : sortOrder; } public bool IsUnique { get; private set; } public bool IsClustered { get; private set; } public SortOrder SortOrder { get; private set; } //public string Where { get; private set; } }

Luego creé un inicializador personalizado que obtuvo una lista de los nombres de tabla creados para las entidades en mi contexto. Tengo dos clases base que todas mis entidades heredan, así que hice lo siguiente para obtener los nombres de la tabla:

var baseEF = typeof (BaseEFEntity); var baseLink = typeof (BaseLinkTable); var types = AppDomain.CurrentDomain.GetAssemblies().ToList().SelectMany(s => s.GetTypes()).Where( baseEF.IsAssignableFrom).Union(AppDomain.CurrentDomain.GetAssemblies().ToList().SelectMany( s => s.GetTypes()).Where( baseLink.IsAssignableFrom)); var sqlScript = context.ObjectContext.CreateDatabaseScript(); foreach (var type in types) { var table = (TableAttribute) type.GetCustomAttributes(typeof (TableAttribute), true).FirstOrDefault(); var tableName = (table != null ? table.Name : null) ?? Pluralizer.Pluralize(type.Name);

Luego encontré todas las propiedades en cada entidad que tiene este atributo y luego ejecuto un comando SQL para generar el índice en cada propiedad. ¡Dulce!

//Check that a table exists if (sqlScript.ToLower().Contains(string.Format(CREATETABLELOOKUP, tableName.ToLower()))) { //indexes var indexAttrib = typeof (IndexAttribute); properties = type.GetProperties().Where(prop => Attribute.IsDefined(prop, indexAttrib)); foreach (var property in properties) { var attributes = property.GetCustomAttributes(indexAttrib, true).ToList(); foreach (IndexAttribute index in attributes) { var indexName = string.Format(INDEXNAMEFORMAT, tableName, property.Name, attributes.Count > 1 ? UNDERSCORE + (attributes.IndexOf(index) + 1) : string.Empty); try { context.ObjectContext.ExecuteStoreCommand( string.Format(INDEX_STRING, indexName, tableName, property.Name, index.IsUnique ? UNIQUE : string.Empty, index.IsClustered ? CLUSTERED : NONCLUSTERED, index.SortOrder == SortOrder.Ascending ? ASC : DESC)); } catch (Exception) { } } }

Incluso agregué índices basados ​​en clases (que podrían tener múltiples columnas), restricciones únicas y restricciones predeterminadas, todas de la misma manera. Lo que también es realmente agradable es que si coloca estos atributos en una clase heredada, el índice o la restricción se aplica a todas las clases (tablas) que lo heredan.

Por cierto, el ayudante de pluralizador contiene lo siguiente:

public static class Pluralizer { private static object _pluralizer; private static MethodInfo _pluralizationMethod; public static string Pluralize(string word) { CreatePluralizer(); return (string) _pluralizationMethod.Invoke(_pluralizer, new object[] {word}); } public static void CreatePluralizer() { if (_pluralizer == null) { var aseembly = typeof (DbContext).Assembly; var type = aseembly.GetType( "System.Data.Entity.ModelConfiguration.Design.PluralizationServices.EnglishPluralizationService"); _pluralizer = Activator.CreateInstance(type, true); _pluralizationMethod = _pluralizer.GetType().GetMethod("Pluralize"); } } }



También he investigado esto recientemente y no he encontrado otra forma, así que me conformé con la creación de índices cuando sembré la base de datos:

public class MyDBInitializer : DropCreateDatabaseIfModelChanges<MyContext> { private MyContext _Context; protected override void Seed(MyContext context) { base.Seed(context); _Context = context; // We create database indexes CreateIndex("FieldName", typeof(ClassName)); context.SaveChanges(); } private void CreateIndex(string field, Type table) { _Context.Database.ExecuteSqlCommand(String.Format("CREATE INDEX IX_{0} ON {1} ({0})", field, table.Name)); } }


Tenga en cuenta que en Entity Framework 6.1 (actualmente en versión beta) se admitirá IndexAttribute para anotar las propiedades del índice, lo que automáticamente dará como resultado un índice (único) en sus primeras migraciones de código.


expandiendo en Petoj

modifiqué CreateIndexQueryTemplate para

private const string CreateIndexQueryTemplate = "IF NOT EXISTS (SELECT name FROM sysindexes WHERE name = ''{indexName}'') CREATE {unique} INDEX {indexName} ON {tableName} ({columnName});";

y eliminó lo siguiente de OnModelCreating

Database.SetInitializer(new IndexInitializer<MyContext>());

y agregó lo siguiente al método de Secuencia de configuración

new IndexInitializer<MyContext>().InitializeDatabase(context);

De esta manera, los atributos de índice se ejecutan cada vez que se realiza una actualización de base de datos.