ABP记录被删除调用Repository.Get报错

Posted wangyinlon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABP记录被删除调用Repository.Get报错相关的知识,希望对你有一定的参考价值。

如果这条数据被删除了下面这样调用报错

_schoolInformationRepository.Get(admin.SchoolId.Value)?.SchoolName;

 

 

EvaluationSystem.CustomeExceptionFilter - There is no such an entity. Entity type: EvaluationSystem.EntityDesign.SchoolInformation, id: 99c2b418-4083-aa1f-ad54-39f594c78790
Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: EvaluationSystem.EntityDesign.SchoolInformation, id: 99c2b418-4083-aa1f-ad54-39f594c78790
at Abp.Domain.Repositories.AbpRepositoryBase`2.Get(TPrimaryKey id)
at Castle.Proxies.Invocations.IRepository`2_Get_27.InvokeMethodOnTarget()
at Castle.DynamicProxy.AbstractInvocation.Proceed()
at Abp.Domain.Uow.UnitOfWorkInterceptor.InterceptSynchronous(IInvocation invocation)
at Castle.DynamicProxy.AbstractInvocation.Proceed()
at Castle.Proxies.IRepository`2Proxy_23.Get(Guid id)

 

改成下面就好了

 _schoolInformationRepository.FirstOrDefault(x => x.Id == admin.SchoolId.Value)?.SchoolName;

以上是关于ABP记录被删除调用Repository.Get报错的主要内容,如果未能解决你的问题,请参考以下文章

ABP js调用后台的删除 参数为int类型 非对象

oracle,FORM,删除数据时,只能按插入的顺序删除,才不会报错。(FRM 40654 记录已被其他使用者更新 )

abp系列之一张图理清数据过滤器的继承关系

ABP官方文档翻译 4.6 审计日志

[Abp 源码分析]自动审计记录

ABP数据迁移的时候报错!