Cracker
Trying to log database operations into file and insert values into db using ef core at same time
You can have a in-memory pool like ConcurrentBag to put logs into and a single consumer can read and write into text file from the pool. It can do like bulk write into file once the count is like 50 or whatever is proper for you
12 replies
Approaches to get around a big codebase
Not sure if its relevant to your case but I used to have that one huge project. I needed to debug some part of if. I could host that project by copy host files from server to my local IIS, then I build the project that I want to debug, I build the project, copy output dll/pdf files to IIS folder and I can attach to debug, make changes and commit
6 replies