Entity framework is a easy way to manage your DB connections and databases Creating an app using dotnet core Access the application’s path and install the packages Creating the model Creating the DataContext Creating the class to get our connection string Creating your class DataAccess to manipulate our database with options to use two BDs…
Tag: dotnetcore
Deploying dotnetcore Applications on Kubernetes with Service Mesh Kuma
On these days, microservices are improving our productivity, scalability and the disponibility of our apps and saving time (Woow!), to support the security and access control we can use the service mesh to do that so let’s make an example using: dotnetcore, kubernetes and kuma 🙂 Our ingredients: 1 – Kubernetes; 2 – Kuma Mesh;…
Deploying a dotnetcore app on Kubernetes
Deploy an application dotnetcore on Kubernetes locally Installing application dotnetcore demo: Running the app locally: Navigate to the project folder at dotnet-docker/samples/aspnetapp/aspnetapp. Go to http://localhost:5000 in a browser to test the app. Press Ctrl+C at the command prompt to stop the app. Building the application on Docker container: Navigate to the Dockerfile folder at dotnet-docker/samples/aspnetapp. Run the following…