作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
早上好。
我在我的项目中使用域事件,我发现实现它的最简单方法是使用 MediatR。但我不希望我的项目直接依赖它,我想应用依赖倒置来隐藏库。
由于 INotification 接口(interface),当前代码依赖于 Mediator
public class EmailConfirmedEvent : INotification
{
public Guid PassengerId { get; }
public string Email { get; }
public EmailConfirmedEvent(Guid passengerId, string email)
{
Email = email;
PassengerId = passengerId;
}
}
但我想变成这样:
public class EmailConfirmedEvent : IMyProjectDomainEvent
{
public Guid PassengerId { get; }
public string Email { get; }
public EmailConfirmedEvent(Guid passengerId, string email)
{
Email = email;
PassengerId = passengerId;
}
}
通过某种方式,我需要将中介事件/事件处理程序“转换”为我的项目事件/事件处理程序。
执行此操作的最佳方法是什么。提前致谢。
最佳答案
我最终使用 StructureMap 和反射创建了我的域事件自定义代码,以在运行时解析事件处理程序。此处的代码示例:https://github.com/Henry-Keys/domain-events-sample
关于.net-core - 如何将 MediatR 与我的业务层分离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50539986/
我是一名优秀的程序员,十分优秀!