How can I set the starting value for an identity primary key when using the mvc 5 code first approach?
Recently I tried using
[DatabaseGenerated(DataGeneratedOption.Identity)]
but this automatically starts the values off at 1 whereas I want to set my own starting value.