PinnedDocker Desktop Alternative (Docker-CLI + Docker-Compose + Minikube + Hyperkit)As we all know Docker-desktop is not going to be free for large organizations. As an alternative I was crowdsourcing steps from different articles. And here are is the composition for a minimalist user who uses docker to bring up dependencies in dev environment. So, what is docker desktop? Docker desktop is roughly a combination…Docker2 min read
Apr 7Mapping Friendship in dotnet (and many to many relations entity framework core)Relationships are complex. Writing code for that might be even more complex. Here we are trying to represent friendship between two persons using dotnet. This is the domain logic. Now, we try to represent it with Code first migration. And this is where problem starts. But before we do…Many To Many2 min read
Dec 18, 2021Ef core Migration in DevOps pipelinesEf core migration is a great feature but it has always been a pain to run in pipelines. So far, the recommended approach was to generate a SQL script and then execute it. However, things changed with dotnet 6. …Dotnet Core2 min read