Week 4 of my series, sharing things I’ve learnt, read, watched and listened to, in the pursuit of expanding my knowledge about software development. A slightly shorter set of links this week, things have been fairly busy so I’ve had less time to keep up with all of the fantastic content. Things I’ve Learned That I […]
Tag: ASP.NET Core
A Reminder to Take Care when Registering Dependencies
I looked into a “fun” little problem yesterday where we were seeing occasional errors in some of our ASP.NET Core code which calls down into the ASP.NET Core Identity UserManager. We were getting a range of NullReferenceException and ObjectDisposedExceptions as well as various exceptions from Npgsql.NpgsqlConnection (we use Postgres rather than SQL in this project) […]
Things I’ve Learnt This Week (5th February)
I’m keeping up my plan (week 2 yay!) to record and share things I’ve learned during the last week. Less from me this week as it’s been fairly hectic and I’ve been feeling a bit unwell. Things I’ve Learned Identity Server 4 As part of my work for Humanitarian Toolbox I’ve been actively investigating Identity […]
Things I’ve Learnt This Week (29th January)
Whether this will become a regular thing, I’m not sure. But starting this week I’ve been keeping notes on the things I’ve learned, problems I’ve faced and resources that I’ve read, watched or listened to. I try to consume as much information as possible about ASP.NET and development in a continual drive to learn more […]
CQRS with Mediatr and ASP.NET Core Implementing basic CQRS with ASP.NET Core
I was first introduced to the Mediatr library when I started contributing to the allReady project. It is now being used quite extensively within that application. It has proven to be very useful in decoupling code and separating the concerns. Contributors to the project have recently worked through a good chunk of the codebase and […]