Introduction. There are many data access technique and tools out there that allow our application interact with our data store, things like AutoMapper, Dapper and many more. In this article we are making use of Entity Framework Core to create our database context for communicating with our data store ( in this case SQL RDBMS ). Assumptions This article assume that we are going to perform data access for an ASP.Net Core application. All crosscutting concern will be ignored Consideration The code involved in this article is based on assumptions, It was proposed for the intention to show its functions/features based on the article title. For production/release we might need to tweak it to meet the company policy, best practice and industry standards. The code/script snippet is free to use anywhere. The Requirement Statement We are required to create a data access library that will be consumed by a client ( Asp.Net Core ) . This library then will be referenced by the client...