StructureMap 异常代码:202 没有为 PluginFamily 定义默认实例
我正在使用 Entity Framework 4.0 从 asp.net 调用下面提到的代码。我有一个地址表,需要在其中插入一些数据。我的代码是:
IRepository<Address> addressRepository;
int addressHOCODE = 0;
try
{
**addressRepository = ObjectFactory.GetInstance<IRepository<Address>>();**
addressRepository.Add(address);
addressRepository.SaveChanges();
addressHOCODE = address.HOCODE;
}
catch ...
在 addressRepository = ObjectFactory.GetInstance
行,我们收到以下错误。
StructureMap 异常代码:202 否 默认实例定义为 插件家族 Domain.IRepository`1[[数据.地址, DataAccessLayerNew,版本=1.0.0.0, 文化=中立, PublicKeyToken=null]], DataAccessLayerNew,版本=1.0.0.0, 文化=中立,PublicKeyToken=null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您自己解决了这个问题,但为了帮助可能遇到此页面的其他人,我希望在 Global.asax.cs 文件中看到类似的内容:
Looks like you worked this out for yourself, but to help others who might come across this page, I'd expect to see something like this in the Global.asax.cs file: