diff --git a/model/Command/BaseCommand.cs b/model/Command/BaseCommand.cs index 61c9eda5..558e206a 100644 --- a/model/Command/BaseCommand.cs +++ b/model/Command/BaseCommand.cs @@ -43,6 +43,8 @@ public Database CreateDatabase(IList filteredTypes = null) DataSource = Server, InitialCatalog = DbName, IntegratedSecurity = string.IsNullOrEmpty(User), + //setting up pooling false to avoid re-use of connection while using the library. + //http://www.c-sharpcorner.com/article/understanding-connection-pooling/ Pooling = false }; if (!builder.IntegratedSecurity)