
Build a full-stack app with Microsoft SQL Server, .NET Core Web API, and Angular. Create database tables, API endpoints, and a frontend with routing, sorting, filtering, and image upload.
Install Visual Studio by downloading the free community version for education, run the installer, and select the dotnet and web development workload before clicking install.
Install Visual Studio Code, a popular lightweight code editor from Microsoft, to streamline front-end web development in this full-stack course.
Install Postman to begin testing the redBus API. Use Postman to explore request workflows and validate endpoints within Angular 12, .NET Core Web API, and Microsoft SQL full-stack app course.
Install SQL Server Management Studio to work with SQL Server databases, accept default options, restart when prompted, and complete the setup.
Install Node.js and verify the installation by checking the version to ensure the development environment is ready for the full-stack app.
Create database objects by setting up SQL Server or Azure, then build department and employee tables with an auto-generated id, department name, employee name, joining date, and profile picture.
Create a net core web api project in Visual Studio, explore dependencies, controllers, and startup configuration, and learn how dependency injection builds the request processing pipeline.
Enable cors by default and adopt the default json serializer for the full-stack app, possibly installing a package and importing the namespace, then run the project to verify the results.
Create a models folder and add a department model with fields for department and department name, followed by an employee model including fields for employee name, department, and joining date.
Develop department API endpoints in a .NET Core app, using app settings for the connection string, dependency injection, and get, post, put, delete operations with JSON results.
Implement the employee details screen API methods and add an empty API controller. Copy the department controller, adapt it, and test get, post, and delete methods with expected results.
Implement a post upload file api that creates a photos folder, saves the first form-data file via dependency injection, and returns the filename, using a default anonymous image on errors.
Install angular tooling globally, create a new project with routing and a stylesheet, open in Visual Studio Code, add bootstrap, and run to see the app refresh in browser.
Create routing for the app by adding three pages: home, department, and employee, implement components, configure module imports, and wire up navigation paths to demonstrate functional routing.
Display department data with a bootstrap table by calling the get department api, refreshing data in a lifecycle method, and providing edit and delete actions with bootstrap icons.
Showcases a reusable modal popup for adding, editing, and deleting departments, with dynamic title and department name binding, and a delete confirmation workflow.
Complete the employee screen by copying department page, adding an employees array, profile picture upload with environment file path, a department dropdown, and a join date, ensuring data renders correctly.
Add an image upload button, select the first file, and append it to form data, then save and update the file name to display on screen.
Implement sorting and filtering for a two-department data set, using a text box for input, a backup array, and a filter function with includes on a property and ascending/descending options.
Hello Everyone, and welcome to this course on Angular 12, .NET Core Web API, Microsoft SQL Server full-stack web development.
In this course, you will learn how to develop a web application from scratch using popular technologies such as
* Microsoft SQL Server for the database.
* .NET Core Web API for the back end web development.
* And the latest Angular 12 for the front end web development.
-We will first start with installing and setting up the environment needed for our database, back end project and front end project.
-Then we will develop REST API end points using .NET Core Web API.
-Finally we will be using Angular 12 to design the front end part of our App.
* You will learn how to create the navigation menu and tables using bootstrap, add routing and navigation to our Angular App, add modal pop up window with drop downs and date pickers, and also add upload profile picture functionality and store it in the backend server. We will also learn how to add custom filtering and sorting features without using any third party packages.
I am sure that this course will definitely help you in your journey as a full stack web developer.
Welcome to the course, and happy learning.