Remco Ros

Results 68 comments of Remco Ros

I don't do any development in the tool anymore. It works for me and others. I'd be happy to take and review any merge request though.

I won't be able to look at this myself any time soon. You might be able to tweak this here, I think it scans all directories recursively, this needs to...

After updating Git for windows to 2.35.2 I had a similar issue where Git Extensions thought it was in the middle of a merge. I saw git status output complaining...

You can make an IMultiTenantDbContextProvider and handle any connectionstring/tenant specific creation and caching of DbContext in there. Inject that into your handlers. Don't be afraid to write a little bit...

You can call AddMediatR() multiple times with different assemblies. The base services (like IMedatior) are only added once. Note that if you use the overload with the configure options delegate,...

You can inspect the InnerException property, it contains the original exception that was thrown from the DI container.

What are the error and stacktraces you get?

Catch the exception like @mxmissile shows and print out the InnerException (using ToString for example)

The constructor of what? Your handler? Then you cán capture it from the send method, since that method will find the correct handler trough DI. Just debug and break on...

If you can, please do. I may have an idea to improve this and (looking at previous issues) this is something others have struggled with as well. Especially in more...