AutoFixture in ASP.Net Core 🎥

Hello, 👋 This is my first video blog post in which I try to explain AutoFixture. Here’s the test case referenced in the video and the code repository for the Retroactiune project. I used the following packages in my project. <ItemGroup> <PackageReference Include="AutoFixture" Version="4.17.0" /> <PackageReference Include="AutoFixture.Xunit2" Version="4.17.0" /> </ItemGroup> Thanks for watching! 🙂

August 19, 2021 · 1 min · Denis Nuțiu

Adding PostgreSQL support to your ASP.Net Core application via Docker

I’ve been playing recently with ASP.Net Core and I’m developing a small Web API project in order to teach myself the framework. In still article I’ll explain how to use a Postgres database with Docker, in order to make your development experience much more enjoyable. Before moving on, please make sure that you’ve installed: Docker Docker-Compose First, create the docker-compose.yml file in your root directory of the project, the file should contain:...

May 11, 2019 · 2 min · Denis Nuțiu