Esempio n. 1
0
 public void DropTable(string name)
 {
     m_setupRepository.DropTableIfExists(name);
     DroppedTables.Add(name);
 }
Esempio n. 2
0
 public void DropTable <T>() where T : class
 {
     m_setupRepository.DropTableIfExists <T>();
     DroppedTables.Add(typeof(T).Name);
 }