0
aggarwal created
Hi,
I have a requirement to create a transaction is "Inactive" state on my FullyAudited entry like an empty tax return via a background job.
Once the user prepares and submits the record, I want to log the "CreatedBy" as the user who made the submission.
I was referring to this - https://aspnetboilerplate.com/Pages/Documents/Entities?searchKey=auditing#active-passive-entities. Not sure if my understanding for this is correct about this functionality.
Is there an example for above?
Thanks & Regards, Vikas
4 Answer(s)
-
0
You set it like any other property. What's the problem?
-
0
Thanks.
I was just wondering if there was more an example for IPassivable being used?
-
0
Tenant
andUser
areIPassivable
.You can see how
.IsActive
is being used in the codebase. -
0
Thank you.