我使用實體框架4.0調用了下面提到的asp.net代碼。我有一個地址表,我需要插入一些數據。我的代碼是:StructureMap例外代碼:202沒有爲PluginFamily定義的默認實例
IRepository<Address> addressRepository;
int addressHOCODE = 0;
try
{
**addressRepository = ObjectFactory.GetInstance<IRepository<Address>>();**
addressRepository.Add(address);
addressRepository.SaveChanges();
addressHOCODE = address.HOCODE;
}
catch ...
在addressRepository = ObjectFactory.GetInstance<IRepository<Address>>();
行,我們得到以下錯誤。
StructureMap異常代碼:202 PluginFamily Domain.IRepository`1 [[Data.Address, DataAccessLayerNew,版本= 1.0.0.0, 文化=中性,沒有定義 默認實例 公鑰=空] ], DataAccessLayerNew,版本= 1.0.0.0, 文化=中立,公鑰=空
我錯過了Global.asax中的一些條目。這是原因。 – Zohaib