Tôi đang cố gắng hoàn thành xử lý ngoại lệ này:
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);
}
Vấn đề này dường như chỉ xảy ra với tôi khi tôi đang sử dụng nUnit.