When I Delete data from a column that has identity seed id turned on, it doesnt reset back to the proper number but continues to count. For example:
I add ten items , so the latest added item will have id of 10, when i delete the items from database, the Id should reset itself back to 0 for example, but it still counts up starting from 11.. it not trully consistent, I'm using Entity Framework to add/delete stuff from database, so my question is, is there anyway to fix this? maybe through the Entity requests/queries?
TRUNCATE.