3

我试图弄清楚如何配置企业库 5.0 数据访问应用程序块。运行我的单元测试时,我收到以下错误:

Microsoft.Practices.ServiceLocation.ActivationException was caught
  Message=Activation error occured while trying to get instance of type Database, key "PokerAdviserProvider"
  InnerException: Microsoft.Practices.Unity.ResolutionFailedException
       Message=Resolution of the dependency failed, type = "Microsoft.Practices.EnterpriseLibrary.Data.Database", name = "PokerAdviserProvider".
Exception occurred while: while resolving.
Exception is: InvalidOperationException - The type Database cannot be constructed. You must configure the container to supply this value.

我得到这个的代码行:

var db = DatabaseFactory.CreateDatabase("PokerAdviserProvider");

应用程序配置:

<configuration>
    <configSections>
        <section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Microsoft.Practices.EnterpriseLibrary.Data, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />
    </configSections>
    <dataConfiguration defaultDatabase="PokerAdviserProvider" />
    <connectionStrings>
        <add name="PokerAdviserProvider" connectionString="server=(localhost);Initial Catalog=PokerAdviser;uid=abc;pwd=xyz"
            providerName="System.Data.SqlClient" />
    </connectionStrings>
</configuration>

我一直在谷歌搜索,发现一些答案,这些设置也应该放在我的 unittest-project 的 app.Config 中,但这并没有什么不同。

我有点卡在这里,所以非常感谢任何帮助。

编辑:

我引用了正确的 dll(来自 Program Files 的那些,而不是来自源代码的),所以这也不是问题。

4

3 回答 3

2

我终于解决了这个问题:

Error: Activation error occured while trying to get instance of type Database, key "<database name>"

Inner Exception:  Resolution of the dependency failed, type = Microsoft.Practices.EnterpriseLibrary.Data.Database

我在 Windows 7、Enlib 5.0 上运行 VS 2010。以下对我有用。想四处传播

  1. 确保您正确引用了 Microsoft.Practices.Unity.dll

  2. 获取 VS 2010 的最新服务包

于 2012-02-22T09:34:09.707 回答
0

终于想通了。我在我的 web 服务的类库中使用 DAAB,并认为我必须在该库中创建一个 app.config。应该知道这是行不通的。做这件事时,我的思绪可能很遥远……

我在webservice的web.config中做了配置,现在一切运行顺利。

于 2011-04-12T21:10:15.397 回答
0

参考这两个关于企业库配置的好帖子post1 & post2

于 2012-11-26T09:01:55.457 回答