Mark Vincze

Software Developer

asp.net-core

Overriding configuration in ASP.NET Core integration tests

asp.net-core testing integration-testing

This post gives an overview of the various ways to override configuration values in ASP.NET Core integration tests.


Graceful termination in Kubernetes with ASP.NET Core

asp.net-core kubernetes

An overview of the challenges and solutions for implementing graceful termination when using ASP.NET Core in Kubernetes.


Secure an ASP.NET Core api with Firebase

asp.net-core security firebase

How to secure an ASP.NET Core application with Firebase Authentication by verifying the access tokens in the Authorization header.


Troubleshooting high memory usage with ASP.NET Core on Kubernetes

.net-core asp.net-core kubernetes

Chasing down why ASP.NET Core applications might use unreasonably much memory in Kubernetes, and how to it can be mitigated.


Running ASP.NET Core in auto-scaling containers? Warm up!

web api asp.net-core kubernetes

The first request to an ASP.NET Core API is always slow. This post shows a way how to warm up our application before deploying it to production.


Tear down your ASP.NET Core api between integration tests

c# couchbase asp.net-core testing integration-testing quartz.net

Static state in an ASP.NET Core application can cause problems when running subsequent integration tests. In this post we take a look at how to solve this.


Two gotchas with scoped and singleton dependencies in ASP.NET Core

c# asp.net-core dependency-injection

Two possible problems (and their solutions) we can run into when registering objects with various lifecycles with the DI container of ASP.NET Core.


Jumpstart F# web development: F# with ASP.NET Core

asp.net-core f#

An introduction to get started with web development in F#, using ASP.NET Core.


Stubbing service dependencies in .NET using Stubbery

asp.net .net .net-core asp.net-core testing integration-testing

Stubbery is a library for creating and running Api stubs in .NET. The post shows how it can be used to stub service dependencies during integration tests.


How to validate action parameters with DataAnnotation attributes?

asp.net c# .net-core asp.net-core

A simple approach to evaluate DataAnnotation validation attributes not only on model properties, but on the action method parameters as well.


ASP.NET Core 1.0: hints to get started

asp.net c# .net .net-core asp.net-core dnx

Some random tips and tricks I have learnt during spending a couple of weeks with getting started with ASP.NET Core.