0
sean.alford created
We need to build a service that will manage sequential numbers across multiple modules.
ISequentialNumberManager _sequentialNumberManager
// Get the next ticket number
Ticket.Number = await _sequentialNumberManager.GetNextAsync("TicketNumber");
Should we simply create a module without a UI, or is there a better best practice?
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
3 Answer(s)
-
0
Hi,
if it is a simple service and not use database,you can just create libary project , like
volo.abp.automapper.Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
@liangshiwei it will use a database to store the current seq number for a given entitiy.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi,
You can refer the audit-loggin module.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)