public void TestCleanup() { INLORMDb mssqlDb = null; try { mssqlDb = new NLORMMSSQLDb( constr); mssqlDb.DropTable<TestClass01>(); mssqlDb.DropTable<TestClass2>(); mssqlDb.DropTable<TestClassDecimal>(); } catch ( Exception) { } }
public void TestDropTable() { INLORMDb db = null; db = new NLORMMSSQLDb( constr); db.CreateTable<TestClass01>(); db.DropTable<TestClass01>(); }
public void TestCreatDecimalType() { INLORMDb db = new NLORMMSSQLDb( constr); db.CreateTable<TestClassDecimal>(); db.DropTable<TestClassDecimal>(); }
public void TestCreatbitType() { INLORMDb db = new NLORMMSSQLDb( constr); db.CreateTable<TestClassbit>(); db.DropTable<TestClassbit>(); }
public void TestCreatbitType() { INLORMDb db = new NLORMMSSQLDb(ConnectionString); db.CreateTable <TestClassbit>(); db.DropTable <TestClassbit>(); }
public void TestDropTable() { INLORMDb db = null; db = new NLORMMSSQLDb(ConnectionString); db.CreateTable <TestClass01>(); db.DropTable <TestClass01>(); }
public void TestCleanup() { try { var db = new NLORMMSSQLDb(connectionString); db.DropTable<TestClassOne>(); } finally { } }
public void TestInitialize() { INLORMDb msdb = null; try { msdb = new NLORMMSSQLDb( constr); msdb.DropTable<TestClass01>(); msdb.DropTable<TestClass2>(); msdb.DropTable<TestClassDecimal>(); } catch ( Exception) { } }