Thank you for the quick response and details of the situation. If I do not need the separation of users and roles would the Organization Unit still be a good fit for multiple warehouses under a tenant? I am trying to identify the best supporting method from the framework to support separation of data and transactions.
We are very small IT organization and using as much of the ASP.NET Zero framework to support our customers is very beneficial.
Thank you,
Matt
Thank you Aaron! That was the missing piece. I see the entity reason code I set now. An update to the screen now will complete the requirement I have for my customer.
Thanks again,
Matt
Thanks I see where I missed the declaration of private not being supported. For a quick test I made a change to the location and function with the UseCase declaration to see if I would get a different result. Even after making a change with the following method I am still seeing the URL as the Reason in the database.
[UseCase(Description = "Updating User Contact Information")] public async Task CreateOrEdit(CreateOrEditContactDto input) { if(input.Id == null){ await Create(input); } else{ await Update(input); }
}
I know I am missing something and that it is not the framework, just trying to learn.
Thanks,
Matt
Yes, I have read through the documentation several times. I have also applied the UseCase attribute, per the documentation, to the function and still no reason description other than the standard shows in the table for logging. I am not receiving any errors in the logs or in the application.