I have been building a web application using Blazor, on the site there is a change history/audit area which records every change made on which showing basic information, user name, date, old value, new value etc. Right now I am storing the changes are being logged in the connected SQL Server, as you can imagine this means the size of the data base could increase rapidly. Rather than running a script that clears out old history every few weeks is there anyway I could direct the change history logs to another SQL database or some other cloud storage. Not looking for any code example just ideas of how/if this might be possible.How to Store users detail who made the changes in Blazor server application.I want to show users details on GUI whoever made the changes in existing data.
Thanks.