-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.txt
55 lines (38 loc) · 1.71 KB
/
commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
https://stackoverflow.com/questions/6576442/should-user-and-address-be-in-separate-tables
https://stackoverflow.com/a/49949217/11244995
https://stackoverflow.com/a/6576474/11244995
https://softwareengineering.stackexchange.com/questions/241089/keep-user-and-user-profile-in-different-tables
https://stackoverflow.com/questions/3889797/mysql-user-profile-details-table-setup-best-practice
cd Hello.WebApi
dotnet ef migrations add "AdjustedContext" --context AppDbContext -o .\Data\Migrations # --project "Hello.WebApi"
cd Hello.WebApi
dotnet ef database update --context AppDbContext # --project "Hello.WebApi"
dotnet ef database update --context AppDbContext –TargetMigration: "20212342332_AddedToContext" # --project "Hello.WebApi" # before -targetmigration
dotnet ef migrations remove
sql management studio delete all current aspnetusers
delete from [hello-auth].[dbo].[AspNetUsers]
C:\Users\Florian\AppData\Roaming\Microsoft\UserSecrets
https://localhost:5001/swagger/index.html
// dotnet 6 hot reload
dotnet watch
dotnet run
dotnet test
dotnet tool install --global dotnet-ef
dotnet run --launch-settings "dev"
docker build -t PersonalWebsiteBackend .
docker run -p 5000:5000 PersonalWebsiteBackend
docker-compose build
docker-compose up
https://0.0.0.0:5000/swagger/index.html
docker-compose down
vervollstaendigen
userservice
kleinen mailservice bauen + integrieren in register, password reset, password update, passwordResetByAdmin,email update confirm,...
validation for several identityController
dotnet new sln --name FooBar
dotnet new console --name Foo --output Foo
dotnet new console --name Bar --output Bar
dotnet sln add .\Foo\Foo.csproj
dotnet sln add .\Bar\Bar.csproj
dotnet restore
dotnet build FooBar.sln