0
I am creating a desktop application (Commercial System) using C#. I have a table of Users registration in which will be registered all employees who will log in to the system. In the registration screen, I would like a HISTORY tab and list all the accesses of that user during a period... It would be similar to the image below:
To store the history, what would be the best way:
1 - Create a table in the same Database (ex: User) and save everything in it;
2 - Write a log file and read it;
3 - ... Or another way of doing.
I’m sorry if this is a silly question, but I worry a lot about always doing it right so I don’t have problems and especially lose performance.
Thank you :)
Thanks for the tip Rovann!!!
– Master JR