GeistHaus
log in · sign up

Ufuk Hacıoğulları

Part of ufukhaciogullari.com

Programming blog

stories primary
PostgreSQL Integration Testing in .NET Core
.NET CoreC#PostgreSQLIntegration Testing

PostgreSQL is becoming an attractive alternative for .NET Core applications with support from popular ORMs like Entity Framework Core and Dapper. If you are thinking about switching to Postgres, having solid tests will make you more confident with the transition.

https://ufukhaciogullari.com/blog/postgresql-integration-testing-in-net-core/
Integrating Jenkins with Octopus Deploy
JenkinsOctopus DeployMSBuild

Jenkins can easily produce deployable NuGet packages for Octopus Deploy. You should start by adding OctoPack package to the project you want to deploy.

https://ufukhaciogullari.com/blog/integrating-jenkins-with-octopus-deploy/
Strategy Pattern with Dependency Injection
Design PatternsDependency InjectionC#

Strategy pattern is one of the most useful design patterns in OOP. It lets you select an algoritm’s implementation at runtime. However most of the examples you will find online won’t make sense if you are using dependency injection. Here’s one of them:

https://ufukhaciogullari.com/blog/strategy-pattern-with-dependency-injection/