Skip to content

Commit f79a662

Browse files
authored
Updated the README file
1 parent 5c53496 commit f79a662

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
# Cascading-Dropdown-List-in-Blazor-using-Entity-Framework
22
Cascading Dropdown List in Blazor using Entity Framework, The cascading Dropdown List is a series of Dropdown List, where the value of one Dropdown List depends upon another’s value.
3+
4+
## Project pre-requisites
5+
Make sure that you have the compatible versions of Visual Studio Code and .NET Core SDK 3.1.2 in your machine before starting to work on this project.
6+
7+
## How to run this application?
8+
To run this application, you need to first clone the `getting-started-with-blazor-dropdown-list` repository and then open it in Visual Studio Code.
9+
10+
* Need to change the Database connection string in Shared/DataAccess/DataContext.cs
11+
12+
```
13+
optionsBuilder.UseSqlServer(@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=D:\DropDownList\EFDropDown\Shared\App_Data\NORTHWND.MDF;Integrated Security=True;Connect Timeout=30");
14+
15+
```
16+
17+
* Now, open the `Integrated Terminal` in VS Code and run the following command to build and run this project.
18+
19+
```
20+
dotnet watch run
21+
```
22+
23+
Navigate to `http://localhost:5000/` or `http://localhost:5001/` in the browser to view the output.

0 commit comments

Comments
 (0)