-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathReadMe_First.txt
49 lines (32 loc) · 1.38 KB
/
ReadMe_First.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
++++++++++++++++++++++++++++++++++ Database Part ++++++++++++++++++++++++++++++++++
||||||||||||||||||||||||| == Author :- Saineshwar Bageri == |||||||||||||||||||||||||
====================================================================================
1) First thing to do is Create Database with Name :- EventDB
====================================================================================
2) After Creating Database now make changes ConnectionStrings in appsettings.json file
Change this connectionStrings your Own Data Source and Sql UserName and Password.
## Sql Server Authentication ##
"ConnectionStrings":
{
"DatabaseConnection": "Data Source=SAI-PC; UID=sa; Password=Pass@123;Database=EventDB;"
}
## Windows Authentication ##
"ConnectionStrings":
{
"DatabaseConnection": "Server=YOURSERVERNAME;
Database=YOURDATABASENAME;
Trusted_Connection=True;
MultipleActiveResultSets=true"
}
====================================================================================
3) Login Details
1) Customer
UserID : Customer
Password : 1234567
2) Admin
UserID : Admin
Password : 1234567
3) SuperAdmin
UserID : SuperAdmin
Password : 1234567
====================================================================================