ASP.NET MVC3 code first project.
In my class definition how do I set the Identity seed value.
public class Account
{
[Key]
public int Id { get; set; }
What would be the syntax to set the Identity seed to 1000000?
Thank you
ASP.NET MVC3 code first project.
In my class definition how do I set the Identity seed value.
public class Account
{
[Key]
public int Id { get; set; }
What would be the syntax to set the Identity seed to 1000000?
Thank you
Thanks Craig, after looking at https://stackoverflow.com/a/5974656/968301 it was pretty simple.
Create an intializer
Then call from the Application_Start section of the Global.asax.cs