Guides/MVC-Integration/Phase-II-Draft.md
... ...
@@ -8,10 +8,25 @@ Phase II Integration is a continuation to the last step of Phase I integration.
8 8
9 9
### Step 1. Connecting to Northwind Database
10 10
11
+Get the ConnectionString
12
+
11 13
### Step 2. Delete unnecessary Login User Model files.
12 14
15
+The sample MVC app used in the guide already contains its own user login model, since we will add a simpler user login model, in order to avoid any unnecessary conflict, delete existing user login files, Controller, Model, and View.
16
+
17
+
18
+
19
+
20
+
13 21
### Step 3. Add Link to Izenda
14 22
23
+**a. ** Open _Layout.cshtml in Views\Shared\ in Solution Explorer
24
+**b. ** Cut the ActionLink which leads to Izenda as below
25
+**c. ** Open _LoginPartial.cshtml in Views\Shared\ in Solution Explorer
26
+**d. ** Paste the ActionLink in IF block as below so that Izenda link is visible only after logging in
27
+
28
+
29
+
15 30
### Step 4. Add Login User Model
16 31
17 32
### Step 5. Add Controller