C#Unity DI容器不接受具有RegisterType函数的枚举

时间:2016-06-28 14:37:18

标签: c#

见下面的代码

    cont.RegisterType<IBBAConnection, BBAConnection>(ConType.local);
    cont.RegisterType<IBBAConnection, BBAConnection>(ConType.remote);
    cont.RegisterType<IBBAConnection, BBAConnection>(ConType.OrcsWeb);
    cont.RegisterType<IBBAConnection, BBAConnection>(ConType.Sage);

Unity RegisterType 不接受枚举,但是如果我传递字符串然后没有问题,但我必须使用枚举。我的完整代码如下。所以有人看到我的代码并告诉我在代码中修复的内容和位置,因此 enum 应该被接受。

完整代码

public enum ConType { local, remote, OrcsWeb, Sage, };

public interface IBBAConnection
{
    IDbConnection  GetConnection();
    string ConType { get; set; }
}

public class BBAConnection : IBBAConnection
{
    public ConType ConType { get; set; }

    public IDbConnection GetConnection()
    {
        string _connectionString = "";
        IDbConnection connection = null;

        try
        {
            // inside if else logic we fetch connection string from ini file or from any source and inistialize connection.
            if (ConType == ConType.local)
            {
                _connectionString = "put here local db connection";
                connection = new System.Data.SqlClient.SqlConnection(_connectionString);
            }
            else if (ConType == ConType.remote)
            {
                _connectionString = "put here remote db connection";
                connection = new System.Data.SqlClient.SqlConnection(_connectionString);
            }
            else if (ConType == ConType.OrcsWeb)
            {
                _connectionString = "put here website db connection";
                connection = new System.Data.SqlClient.SqlConnection(_connectionString);
            }
            else if (ConType == ConType.Sage)
            {
                _connectionString = "put here sage connection";
                connection = new System.Data.SqlClient.SqlConnection(_connectionString);
            }

            connection.Open();
        }
        catch (Exception ex)
        {
            string strErr = ex.Message;
        }

        return connection;
    }
}

public static class Factory
{
    static IUnityContainer cont = null;

    public static IBBAConnection initialize(ConType oConType)
    {
        IBBAConnection oDbConnection = null;

        cont = new UnityContainer();
        cont.RegisterType<IBBAConnection, BBAConnection>(ConType.local);
        cont.RegisterType<IBBAConnection, BBAConnection>(ConType.remote);
        cont.RegisterType<IBBAConnection, BBAConnection>(ConType.OrcsWeb);
        cont.RegisterType<IBBAConnection, BBAConnection>(ConType.Sage);

        oDbConnection = cont.Resolve<IBBAConnection>(oConType);
        //oDbConnection.ConType = type;

        return oDbConnection;
    }
}

寻找指导原则,应该接受枚举的结果。

1 个答案:

答案 0 :(得分:2)

以下是我认为你应该做的事情。

它会大大降低BBAConnection的复杂性,因为您让IConnectionConfig绑定决定了您需要的连接字符串。

public interface IConnectionConfig
{
    string GetConnectionString();
}

public class LocalConnectionConfig : IConnectionConfig
{
    public string GetConnectionString()
    {
        return "db connection for local";
    }
}

public class BBAConnection : IBBAConnection 
{ 
    private readonly IConnectionConfig config;

    public BBAConnection(IConnectionConfig config)
    {
        this.config = config;
    }

    public IDbConnection GetConnection()
    {
        string _connectionString = "";
        IDbConnection connection = null;

        try
        {
            connection = new System.Data.SqlClient.SqlConnection(this.config.GetConnectionString());

            connection.Open();
        }
        catch (Exception ex)
        {
            string strErr = ex.Message;
        }

        return connection;
    }
}

注册:

container.RegisterType<IBBAConnection, BBAConnection>();
container.RegisterType<IConnectionConfig, LocalConnectionConfig>();

从概念上讲

您通常会让构建配置定义您正在使用的配置。然后,您可以在代码中使用它来定义所需的配置。

相关问题