Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 21 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
# Cascading Blazor Dropdown List in using Entity Framework

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.
Cascading Dropdown List in Blazor using Entity Framework, The cascading Dropdown List is a series of [Blazor Dropdown List](https://www.syncfusion.com/blazor-components/blazor-dropdown-list), where the value of one Dropdown List depends upon another’s value.

## Prerequisites

* Visual Studio 2022
* Visual Studio 2022 or later
* Visual Studio Code

## How to run the project

* Checkout this project to a location in your disk.
* Open the solution file using the Visual Studio 2022.
* Restore the NuGet packages by rebuilding the solution.
* Run the project.
1. Clone or download this repository to a location in your system.
2. Open the solution file using the Visual Studio or Visual Studio code.
3. Restore the NuGet packages by rebuilding the solution or run `dotnet restore`.
4. Build the project to ensure there are no compilation errors.
5. Run the project.

Optional CLI Commands:

```powershell
dotnet restore
dotnet build
```

## References

**Documentation**: https://blazor.syncfusion.com/documentation/dropdown-list/cascading

**Online example**: https://blazor.syncfusion.com/demos/dropdown-list/cascading?theme=fluent2

N> NOTE: Ensure to modify the path of NORTHWIND.MDF in DataContext.cs based on your local path, before running the sample.