@Dave_DotNet Store the image outside the db. They make db and backups larger and doesn’t optimize display (say on a webpage) as well as a CDN does.
In SQL Server they used to have FileTables to give you the best of both worlds. Not sure if people still use them though.
SE Michigan folks: Any interest in a in-person Linux Install Day? Check out various distros, see what others are up to, do some networking etc. Win10 EOL is coming quick and I bet most of us have a machine to repurpose.
@housecor I totally understand the feeling, I’ve been in the same boat. What makes it ironic for me is that I build AI systems and still feel that way.
@webenologyinc@DevLeaderCa That’s a very fair point. Most of what I do is backend processing. This is how I learned microservices back in the day. With REST services I don’t usually differentiate between a service and a microservice, since they are essentially the same thing just smaller.
@DevLeaderCa I’ve done both for many years. Remote is so much better. If done properly you don’t lose much over being in person and you get a lot more freedom.
@DevLeaderCa First and foremost follow industry best practices. That way I don’t have to worry about performance until it becomes a problem (like 5% of time). Then I use dotMemory and dotTrace for profiling. Both are from JetBrains and both are great. I highly recommend.
@dustinmoris I agree you should be using MediatR and just have IRequest and IRequestHandler (already provided). It doesn’t make sense to roll your own.