Create a SQL Server local DB with the Name "CustomerOrdersDB" using Entity Framework Core Code First Approach with two tables "Customer" and "Order".
The Customer table should have the following columns:
Column Name | Type |
---|---|
CustomerID | GUID, PK |
FirstName | VARCHAR(100) |
LastName | VARCHAR(100) |
DOB | DATE |
The Order table should have the following columns:
Column Name | Type |
---|---|
OrderID | INT, PK |
CustomerID | GUID, FK |
ItemName | VARCHAR(100) |
ItemPrice | DECIMAL(10,2) |
The Database should be seeded through code on Initialization of the App with the following data:
CustomerID | FirstName | LastName | DOB |
---|---|---|---|
481cf36a-fdb8-4911-853f-34ad26df4a2a | Alice | Smith | 1/1/1987 |
1db7a052-91d5-43f0-8eeb-c852b504cd59 | Bob | Smith | 12/12/1986 |
OrderID | CustomerID | ItemName | ItemPrice |
---|---|---|---|
1 | 481cf36a-fdb8-4911-853f-34ad26df4a2a | Nail Polish | 100.00 |
2 | 481cf36a-fdb8-4911-853f-34ad26df4a2a | Hair Brush | 500.00 |
3 | 1db7a052-91d5-43f0-8eeb-c852b504cd59 | Shaving Cream | 90.00 |
Create an ASP.NET Core API project with a repository pattern to access the Database and write a controller to fetch Customer List with their Orders List. The data returned should be in JSON format.
Create a Blazor Server ASP.NET Core Web App to display List of Customers in a Grid with the following Columns:
CustomerID | Customer Name | DOB | Action |
---|---|---|---|
481cf36a-fdb8-4911-853f-34ad26df4a2a | Alice Smith | 1/1/1987 | View Orders |
1db7a052-91d5-43f0-8eeb-c852b504cd59 | Bob Smith | 12/12/1986 | View Orders |
View Order will be the hyperlink to the Order Details page for that customer which should list a grid of all the Orders for that selected Customer. The Order Details page should look like When Order Details of Alice Smith is selected:
OrderID | Item | Price |
---|---|---|
1 | Nail Polish | 100.00 |
2 | Hair Brush | 500.00 |
When Order Details of Bob Smith is selected:
OrderID | Item | Price |
---|---|---|
3 | Shaving Cream | 90.00 |
The Blazor Server App should read the data from Test #2 API above.
Things to Note:
- Kindly ensure the code should be in running condition when it's downloaded and opened in Visual Studio.
- Kindly ensure all three projects are part of a single Visual Studio Solution.
- Kindly ensure the database is seeded with above test data.
- Kindly ensure the order of running the apps is set properly so they run in the same order.
- Kindly ensure the app is tested and does not throw any runtime or compilation errors.
- If you have any questions, kindly ask us.
ALL THE BEST !!