How can I reset the Identity column of a table to zero in SQL Server?
Edit:
How can we do it with LINQ to SQL ?
DBCC CHECKIDENT ( ‘databasename.dbo.yourtable’,RESEED, 0)
More info : http://msdn.microsoft.com/en-us/library/ms176057.aspx