a.k.a How can we create multiple identity columns in Code First?
Because of clustering performance, a common recommendation is to use an autoincremented integer column instead of a GUID created with newid()
.
In order to declare a column as autoincrement, you have to specify it with the Annotation [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
.
But, you can only have one identity in a table.
So starting with a base model like:
public abstract class ModelBase { // the primary key public virtual Guid Id { get; set; } // a unique autoincrementing key public virtual int ClusterId { get; set; } }
how do we set it up so that:
ClusterId
is autoincrementedFYI, if you do want to automatically generate it in code, you could skip the annotation on the Id field and do something like:
public abstract class AbstractContext : DbContext { /// <summary> /// Custom processing when saving entities in changetracker /// </summary> /// <returns></returns> public override int SaveChanges() { // recommended to explicitly set New Guid for appropriate entities -- http://msdn.microsoft.com/en-us/library/dd283139.aspx foreach (var entry in ChangeTracker.Entries<ModelBase>().Where(e => e.State == EntityState.Added) ) { // only generate if property isn't identity... Type t = entry.Entity.GetType(); var info = t.GetProperty("Id").GetCustomAttributes( typeof(DatabaseGeneratedAttribute), true).Cast<DatabaseGeneratedAttribute>().Single(); if (info.DatabaseGeneratedOption != DatabaseGeneratedOption.Identity) { entry.Entity.Id = Guid.NewGuid(); // now we make it } } return base.SaveChanges(); } }
This ended up working for me, Entity Framework 5.
Declare the ClusterId
as Identity (annotation)
[DatabaseGenerated(DatabaseGeneratedOption.Identity)] public override int ClusterId { get; set; }
Migrate
Declare the pk property Id
as Identity after the other one has been updated
[DatabaseGenerated(DatabaseGeneratedOption.Identity)] public override Guid Id { get; set; }
Id
is primary key, so you don't need [Key, Required]
Create the migration code like add-migration TrickEfIntoAutogeneratingMultipleColumns
Up()
method, in the AlterColumn
statement, tell the database to autogenerate the GUID by declaring the defaultSqlValue
AlterColumn(theTable, "Id", c => c.Guid(nullable: false, identity: true, defaultValueSql: "newid()"));
This seems to "trick" EF, in the sense that it assumes both columns are identities and reacts accordingly. During migration, it tries to make another column an identity, but seemingly doesn't care when that silently fails -- you end up with one marked as Identity and the other with a default value.
During normal code operation, when EF goes through the SaveChanges/ChangeTracking steps, because it sees the Id
property as an Identity it does it's whole "assign temporary key" thing, so that it's not trying to use the default 0000000... value, and instead lets the database generate it using the default value function you specified.
(I would have thought annotating this field as Computed
would have accomplished the same thing, but...the errors I mentioned in the question...boo...)
And, because the ClusterId
field is also an Identity in code, and really is an Identity in the database, it autoincrements as well.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With