Angular or MVC?
Duplicate of #4571
this package is closed source due to licensing purposes
ABP catches DbUpdateConcurrencyException
and throws AbpDbConcurrencyException
for EF Core.
https://github.com/aspnetboilerplate/aspnetboilerplate/commit/9e6a6bfba161ea9d97fe6d7d4f52d890a11def90
How do I reproduce the problem?
Something to do with CSS overflow: hidden
and/or z-index
?
What scripts?
- Can I move such code into the base application service class (MyAppAppServiceBase)?
Yes.
- The code that is repeated is using a repository for an entity and making inserts into a table. So naturally I'm injecting the repository into the app service through the constructor, can I do this in the base class?
Yes.
- Can I move such code into the base MVC controller class (MyAppControllerBase)?
Yes.
Inherit Entity
instead of FullAuditesEntity
.
The code above specifically prevents implicit hard delete.
If you don't ever want to soft delete, then don't implement an ISoftDelete
in the first place.