আমি এই ব্যতিক্রম হ্যান্ডলারটি শেষ করার চেষ্টা করছি:
if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
string pathOfActiveConfigFile = ...?
throw new ConfigurationErrorsException(
"You either forgot to set the connection string, or " +
"you're using a unit test framework that looks for "+
"the config file in strange places, update this file : "
+ pathOfActiveConfigFile);
}
এই সমস্যাটি তখনই আমার মনে হয় যখন আমি নুনিট ব্যবহার করি।