I have a need to set the every first value in a auto increment id field to a value different to 1 is there a way to do that ?
Is it just a matter of doing a
DBCC CHECKIDENT(<table_name>, RESEED, 1001)
in the Context initialization within the Seed method ?
I've tried this method but it does not work, is there something else I can try.
PS: i know how to use seeded sql statements, its getting this particular functionality to work im having trouble with im trying to work out, ie. reseed the identity column to 1001 in this case. On my table im trying to set in identity seed value to 1001