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 ...
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 ...
version: 3.1 Create an exception This is just a basic exception class public class HttpResponseException:Exception { public HttpResponseException(string value) { ...
version: 3.1 I had a problem where I needed to hide user passwords from the client. dotnet core automatically serializes every field and sends it back. example: http GET /user/2 { ...
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 ...
version: 3.1 If you haven't read it, check out my article on Registering users before you read this. Or don't, I can't tell you what to do. A JWT (Json Web Token) is ...