I have a entity as follows
[Table(\"ESS_POS_SE_VERSION\")]
public class Version
{
[Key, Column(\"DETAIL_ID\"), DatabaseGenerated(DatabaseGeneratedOption.
There is no way to set through Property or Attribute. However, you can run the command on this event:
Probably you can set through Alter: ALTER TABLE [MyTable] ALTER COLUMN [IdentityColumn] IDENTITY (1000,1).
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{ context.Database.ExecuteSqlCommand(ALTER TABLE [MyTable] ALTER COLUMN [IdentityColumn] IDENTITY (1000,1)) }