We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 620b52c commit 18546edCopy full SHA for 18546ed
src/NHibernate/Connection/ConnectionProvider.cs
@@ -59,7 +59,11 @@ public virtual void Configure( IDictionary settings )
59
#endif
60
if( connString == null )
61
{
62
- throw new HibernateException( "Could not find connection string setting" );
+ throw new HibernateException( "Could not find connection string setting (set " +
63
+ Environment.ConnectionString +
64
+ " or " +
65
+ Environment.ConnectionStringName +
66
+ " property)");
67
}
68
69
ConfigureDriver( settings );
0 commit comments