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
if let psqlService =ConfigurationManager.getPostgreSQLService("MyPostgreSQLService"){}
You can simply do:
if let psqlService =ConfigurationManager.getPostgreSQLService(){}
The rationale is that the majority of projects will only have a single database of that given type in the application that has been configured. So we should have this option available to them.
The text was updated successfully, but these errors were encountered:
rolivieri
changed the title
Allow connecting to a service not require a serviceName
Allow obtaining a service without specifying its name.
Mar 29, 2017
In other words, instead of:
You can simply do:
The rationale is that the majority of projects will only have a single database of that given type in the application that has been configured. So we should have this option available to them.
The text was updated successfully, but these errors were encountered: