如果要想重写部分方法,但是又没有实现自定义仓储,就必须从项目的抽象仓储入手,就是继承自EfCoreRepositoryBase的XXXRepositoryBase<TEntity, TPrimaryKey>和XXXRepositoryBase
实现方法
- 去掉abstract关键字,把XXXRepositoryBase<TEntity, TPrimaryKey>和XXXRepositoryBase
改为非抽象类 - 修改构造函数的访问级别为pulic,否则依赖注入无法实例化对象
- 在ef上下文类XXXDbContext增加特性
1
2
3
4
5
6
7
8
9
[AutoRepositoryTypes(
typeof(IRepository<>),
typeof(IRepository<,>),
typeof(HItekLabRepositoryBase<>),
typeof(HItekLabRepositoryBase<,>)
)]
public class XXXDbContext : AbpZeroDbContext<Tenant, Role, User, XXXDbContext>{
//...
}
皮卡丘,就决定用你了。
参考资料
- ABP官方文档翻译 9.2 Entity Framework Core
- AspnetBoilerplate modular: The entity type XXX is not part of the model for the current context
- Custom repository exception
本文会经常更新,请阅读原文: https://dashenxian.github.io/post/abp%E6%9B%BF%E6%8D%A2IRepository%E9%BB%98%E8%AE%A4%E6%B3%A8%E5%85%A5%E7%B1%BB%E5%9E%8B ,以避免陈旧错误知识的误导,同时有更好的阅读体验。
本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名 小神仙 (包含链接: https://dashenxian.github.io ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系 (125880321@qq.com) 。