2

在我的应用程序中,我想依赖于一个类中的多个存储库,并不是每次都需要它们。我没有在不必要的地方为每个实例构建一个实例,而是使用 Windsor 中的Typed Factory 工具

但是,为每个存储库注册一个工厂有点烦人,我想用一个开放的通用注册来代替它。我想做的是如下所示:

container.Register(
    Component.For<IFactory<IRepository<>>>().AsFactory()
);

但是,这是一个语法错误,因为 IRepository 缺少类型参数。有没有我可以使用的语法来完成这项工作?

注意:我知道我可以注册一个无类型的工厂接口并使用它来创建多个组件。我对此不感兴趣,因为这本质上是对服务定位器的依赖——如果我没有注册依赖,那么在代码尝试使用它之前我不会知道它——用我知道的方法this 在构造函数中,即使我还没有创建实例。

完整(简化)示例如下:

public class TestA { }
public class TestB { }
public interface IRepository<T> { T Create();    }
public class Repository<T> : IRepository<T>
{
    public T Create() { return Activator.CreateInstance<T>(); }
}

public interface IFactory<T>
{
    T Create();
    void Release(T instance);
}

class Program
{
    static void Main(string[] args)
    {
        IWindsorContainer container = new WindsorContainer();
        container.AddFacility<TypedFactoryFacility>();

        container.Register(
            // Individual registrations of repositories here are fine
            Component.For<IRepository<TestA>>().ImplementedBy<Repository<TestA>>(),
            Component.For<IRepository<TestB>>().ImplementedBy<Repository<TestB>>()
        );

        container.Register(
            // Individual registrations of factories - works, but trying to avoid!
            Component.For<IFactory<IRepository<TestA>>>().AsFactory(),
            Component.For<IFactory<IRepository<TestB>>>().AsFactory()
        );

        container.Register(
            // Generic Registration of Factories - syntax errors
            // Component.For<IFactory<IRepository<>>>().AsFactory()
            // Component.For(typeof(IFactory<IRepository<>>)).AsFactory()
        );

        var factoryA = container.Resolve<IFactory<IRepository<TestA>>>();
        var factoryB = container.Resolve<IFactory<IRepository<TestB>>>();

        var repoA = factoryA.Create();
        var repoB = factoryB.Create();

        Console.WriteLine("Everything worked");
    }
}
4

2 回答 2

5

您的工厂接口定义有点过于“开放”。更改您的工厂界面如下:

public interface IRepositoryFactory<T>
{
    IRepository<T> Create();
    void Release(IRepository<T> instance);
}

然后您可以注册:

container.Register(Component.For(typeof(IRepositoryFactory<>)).AsFactory());

并解决:

var factoryA = container.Resolve<IRepositoryFactory<TestA>>();
var factoryB = container.Resolve<IRepositoryFactory<TestB>>();
于 2012-10-15T01:33:02.027 回答
1

有一种将存储库组合在一起的模式。它被称为工作单元。因此,与其创建用于创建存储库的工厂,不如创建一个引用这些存储库的工作单元类。例如:

public abstract class UnitOfWork : IDisposable
{
    // here is your factory
    protected abstract IRepository<T> GetRepository<T>();

    public IRepository<User> Users
    {
        get { return this.GetRepository<User>();
    }

    public IRepository<Customer> Customers
    {
        get { return this.GetRepository<Customer>();
    }

    // etc..
}

在您的Composition Root中,您可以定义一个UnitOfWork包含对 Windsor 的引用并使您能够获取实现的IRepository<T>实现:

internal sealed class WindsorUnitOfWork : UnitOfWork
{
    private WindsorContainer container;

    public WindsorUnitOfWork(WindsorContainer container)
    {
        this.container = container;
    }

    protected override IRepository<T> GetRepository<T>()
    {
        return this.container.Resolve<IRepository<T>>();
    }
}

并注册如下:

container.Register(Component.For<UnitOfWork>()
    .ImplementedBy<WindsorUnitOfWork>()
        .LifeStyle.Transient);

消费者现在可以非常方便地使用存储库:

private readonly UnitOfWork db;

public KarmaService(UnitOfWork db)
{
    this.db = db;
}

public int CalculateKarmaForActiveUsersByName(string name)
{
    var users =
        from user in this.db.Users
        where user.Name == name
        where user.Active
        select user;

    return users.Sum(user => user.Karma);
}
于 2012-10-14T13:43:21.370 回答