-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test for FullAuditedEntity<T> base class #2838
Comments
Error details:
It is something related to the |
OK, so go with AuditedEntity. |
I haven't encountered this problem. I have followed the tutorial, made base class |
No problem with |
@yekalkan, @hikalkan I can also confirm this issue (abp v2.1.1) with Postgres. Message: I also tried manually set IsDeleted property, but the result was the same. |
@leonkosak I will try with Postgres. |
hi @leonkosak I created an aggregate root and inserted some data, which did not reproduce your problem. PostgreSQL 12.2 (Debian 12.2-2.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
|
@maliming Ok, thank you. This solves my issue. I also noticed that TenantId property is null in sql table record even the CurrentTenant (ICurrentTenant) has tenant info stored. This tenant is in separated database, but as far as I know for abp-related tables, there should have been tenantid guid value present (if tenantid is not present, there is strange error when logging to this tenant in the web app). |
FullAuditedAggregateRoot also occurred (abp v2.9) with Postgres. |
@geffzhang Please create a new issue. |
A developer reported that using
FullAuditedEntity<Guid>
as the base class instead of theFullAuditedAggregateRoot<Guid>
causes problems in the tutorial.The text was updated successfully, but these errors were encountered: