August 2017
Intermediate to advanced
330 pages
7h 26m
English
To learn more about logging using different providers, we will be creating a demo ASP.NET Core application MyWallet that has the following functionalities:
In this demo application, we will be using a EF Core InMemory provider. This EF Core package runs the application in memory instead of persisting onto a database. It's ideal for unit testing the data access layer, but is used here to make the example ...