You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of the database table which we should drop.
Examples
Drop a table.
// Setup the Database Tester object using the MS SQL implementationvarconnectionstring=@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=tempdb;Integrated Security=SSPI;";VulcanAnalytics.DBTester.DatabaseTestertester=newVulcanAnalytics.DBTester.MsSqlDatabaseTester(connectionstring);// Parameters for DropTable methodvarschemaName="dbo";vartableName="TestPerson";// Call the DropTable method to remove the tabletester.DropTable(schemaName,tableName);