Reset() public method

Reset the sequence to 1. The next time GetNext is called, 1 will be returned.
This sets:

key => 1

public Reset ( ) : void
return void
Example #1
0
        public void ResetTables()
        {
            indices.TruncateTable();
            table.TruncateTable();
            tableByNick.TruncateTable();
            tableByBirth.TruncateTable();
            tableByLastLogin.TruncateTable();

            userIDs.Reset();
        }