yeah

Results 1 issues of yeah

## 背景 准备用 MASA.Framework 实现一个有关用户的 CURD 接口服务。 ## 问题 定义了 `UserRepository` 继承了 `Repository` 的实现 ![image](https://user-images.githubusercontent.com/48524298/229693586-edb9181e-f347-443b-ad4a-9fbee132c40a.png) 并在 `Program` 注入了该仓储以及 `DbContext` ![image](https://user-images.githubusercontent.com/48524298/229694406-f385610d-af98-4c06-9515-3677ef423590.png) 当我启动的时候,会抛异常缺少依赖 `IUnitOfWork`。 ## 尝试解决 1. 查看官方文档发现可以在配置 `EventBus` 的时候提供 `UseUow` 注入...

enhancement
refactor