我在这方面遇到了一些麻烦。
Andreas Öhlund 在这里回答了一个问题,但我无法使用他给出的建议让它发挥作用。
这是我的设置:
public abstract class CommandHandler<T> : IHandleMessages<T>, IDomainReadRepository where T : Command
{
public IDomainRepository DomainRepository { get; set; }
protected abstract void OnProcess(T command);
public TAggregate GetById<TAggregate>(Guid id) where TAggregate : IEventProvider, new()
{
return DomainRepository.GetById<TAggregate>(id);
}
public void Handle(T message)
{
OnProcess(message);
// Domain repository will save.
}
}
这个想法是特定的命令处理程序覆盖 OnProcess 方法并做他们的事情,然后 DomainRepository 将保存所有内容。
这是我注册组件的方式:
public class EndpointConfig : IConfigureThisEndpoint, AsA_Server, IWantCustomInitialization
{
public void Init()
{
Configure.With().DefiningCommandsAs(c => c.Namespace != null && c.Namespace.EndsWith("Commands"));
Configure.Instance.DefaultBuilder().Configurer.ConfigureComponent<DomainRepository>(DependencyLifecycle.InstancePerCall);
Configure.Instance.DefaultBuilder().Configurer.ConfigureComponent<EventStore.Sql.EventStore>(DependencyLifecycle.InstancePerCall);
Configure.Instance.DefaultBuilder().Configurer.ConfigureComponent<MongoDbObjectSecurityDescriptorRepository>(DependencyLifecycle.InstancePerCall);
Configure.Instance.DefaultBuilder().Configurer.ConfigureComponent<LocalTenantConfig>(DependencyLifecycle.InstancePerCall);
}
}
这些是 DomainRepository 使用的所有对象;但是,当我收到命令时, DomainRepository 为空。如果我注释掉注册 DomainRepository 需要的对象的行,我实际上会收到一个错误,说它无法创建它(Autofac DependencyResolutionException)。
应该注意的是,所有其他对象都使用构造函数注入(它们取自先前存在的项目)。我尝试将它们更改为使用公共属性注入,但没有任何区别。
如果有人能指出我在这里做错了什么,将不胜感激!