I'm building a basic CRUD page following beginner asp.net-core-mvc/ef-core tutorials
I've been noticing every time I rebuild and create a new record through my mvc site my Id's jump up 1000
Example, currently the id's for my first few rows are:
- 1, 2, 1002, 1003, 1004, 2002, 2003, 3002, 3003, 4002, 5002
How do I stop this? I've never seen this behavior before. From some googling it seems to be a sql 2012 issue however I'm not using sql 2012.
I'm using mssqllocaldb, everything's updated and I have SSMS2014 installed