BolfTracker.Infrastructure.EntityFramework.GameStatisticsRepository.DeleteAll C# (CSharp) Method

DeleteAll() public method

public DeleteAll ( ) : void
return void
        public void DeleteAll()
        {
            using (var connection = BolfTrackerDbConnection.GetProfiledConnection())
            {
                connection.Open();

                string command = "DELETE FROM GameStatistics";

                connection.Execute(command);
            }
        }