Table Relationships in Entity Framework Core

version 3.1.3 One to many In a one to many relationship their is a parent table and a child table. The child table contains a column which refrences a row of the parent. This is called a foreig ...

Handling Errors

version: 3.1 Create an exception This is just a basic exception class public class HttpResponseException:Exception { public HttpResponseException(string value) { ...

Save Users to Database

version: 3.1 Hashing Passwords with Salt Hashing is a process by which you encrypt a string in a way that it cannot be unencrypted without a lot of effort. **You should always hash your passwor ...