实体框架连接工厂无法正常工作

时间:2015-06-19 11:19:08

标签: c# entity-framework connection entity-framework-6 sqlanywhere

我使用实体框架6并尝试覆盖连接字符串工厂。

我已经写了以下连接工厂:

internal class MyDBConnectionFactory : IDbConnectionFactory
{
    public System.Data.Common.DbConnection CreateConnection(string nameOrConnectionString)
    {
        SAConnection connection = new SAConnection(ConnectionManager.GetConnectionString(nameOrConnectionString ?? "Default"));

        return connection;
    }
}

比我编写自己的配置类:

public class MyDbConfiguration : DbConfiguration
{
    public MyDbConfiguration()
    {
        // Set provider
        SetProvider();

        // Connection-Information
        SetConnectionInformation();
    }

    private void SetProvider()
    {
        DbProviderServices provider = new iAnywhere.Data.SQLAnywhere.SAProviderServices();

        this.SetProviderServices("iAnywhere.Data.SQLAnywhere", provider);
    }

    private void SetConnectionInformation()
    {
        this.SetDefaultConnectionFactory(new MyDBConnectionFactory());
    }
}

最后,我已将配置添加到db-context:

[DbConfigurationType(typeof(MyDbConfiguration))]
public class TestDbContext : DbContext
{

}

我的问题是,CreateConnection中的MyDBConnectionFactory永远不会被调用,我收到以下错误消息:基础提供程序在打开时失败。

为什么永远不会创建我的连接?

也许有人有解决方案,这将是完美的,谢谢。

1 个答案:

答案 0 :(得分:2)

app.config中的配置部分不存在很重要,因为它具有更高的优先级。