gpt4 book ai didi

c# - 使用 Unity 时出现 Entity Framework 错误

转载 作者:行者123 更新时间:2023-11-30 18:15:23 24 4
gpt4 key购买 nike

在尝试解析我的服务类时,我收到一个错误,提示无法构造 DbContext,因为它是一个抽象类。错误信息在这里:

Unity.Exceptions.ResolutionFailedException: 'Resolution of the dependency failed, type = 'MyService.MyClass', name = '(none)'.
Exception occurred while: while resolving.
Exception is: InvalidOperationException - The current type, System.Data.Common.DbConnection, is an abstract class and cannot be constructed. Are you missing a type mapping?
-----------------------------------------------
At the time of the exception, the container was:
Resolving ...
...
Resolving MyApp.MyRepository,(none)
Resolving parameter 'myDbContext' of constructor MyApp.MRepository(MyApp.IMyDbContext myDbContext)
...
Resolving parameter 'existingConnection' of constructor MyApp.MyDbContext(System.Data.Common.DbConnection existingConnection, System.Data.Entity.Infrastructure.DbCompiledModel model, System.Boolean contextOwnsConnection)
Resolving System.Data.Common.DbConnection,(none)
'

DBContext 看起来像这样:

public class MyDbContext : System.Data.Entity.DbContext, IMyDbContext
{
public MyDbContext()
: base("MainConnectionString")
{
}

我的猜测是 EF 在配置文件中查找连接字符串;但连接字符串已定义:

<connectionStrings>
<add name="MainConnectionString" connectionString="Server=.\SQLEXPRESS;Database=MyDB;User Id= . . ." providerName="System.Data.SqlClient" />
</connectionStrings>

统一注册:

因此,我的问题是 EF 如何确定如何构造此类,因为显然我在配置中遗漏了一些东西。

UnityContainer container = new UnityContainer();
container.RegisterType<IMyDbContext, MyDbContext>();
container.RegisterType<IMyRepository, MyRepository>();
container.RegisterInstance<IUnityContainer>(container);

最佳答案

根据 this answer :

Unity will resolve a concrete type (.Resolve), but interfaces have to be explicitly registered by associating them with concrete types.

因此,您有 2 个选择:

  1. 向Unity注册IMyDbContext接口(interface)
  2. 停止使用 IMyDbContext 并使用具体类型(在这种情况下 Unity 将自动解析它,尽管您可能需要手动执行以控制生命周期)

请注意,使用 DI 接口(interface)的主要目的是能够交换实现,因此如果您的应用程序实际上没有将一个相同的数据库模式交换到另一个,在这种情况下您可能不需要接口(interface)。

关于c# - 使用 Unity 时出现 Entity Framework 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48516702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com