17. Publishing (new)/6. Dealing with migrations and multiple Database providers.mp474.47MB
17. Publishing (new)/7. Adding Lazy loading for our related entities.mp498.84MB
17. Publishing (new)/8. Publishing to IIS.mp493.14MB
17. Publishing (new)/9. Setting up a Linux server for publishing.mp4155.41MB
18. Publishing - Deprecated - Please see new Publishing section/1. Introduction.mp47.2MB
18. Publishing - Deprecated - Please see new Publishing section/10. Publishing our app to an IIS Server.mp4124.27MB
18. Publishing - Deprecated - Please see new Publishing section/11. Preparing a Linux server for publishing our application.mp4105.88MB
18. Publishing - Deprecated - Please see new Publishing section/12. Publishing the app to the Linux server.mp495.65MB
18. Publishing - Deprecated - Please see new Publishing section/13. Course Wrap Up.mp4622.2KB
18. Publishing - Deprecated - Please see new Publishing section/2. Using NG Build - Running our Angular app from the Kestrel server.mp4100.88MB
18. Publishing - Deprecated - Please see new Publishing section/3. Angular Production build with the Angular CLI.mp44.51MB
18. Publishing - Deprecated - Please see new Publishing section/4. Using the Angular CLI for Ahead of Time Compilation.mp496.98MB
18. Publishing - Deprecated - Please see new Publishing section/5. Installing MySQL on Mac OSX.mp433.78MB
18. Publishing - Deprecated - Please see new Publishing section/6. Installing MySQL on Windows.mp455.94MB
18. Publishing - Deprecated - Please see new Publishing section/7. Entity Framework Database Providers - updating the SDK to match the provider.mp469.2MB
18. Publishing - Deprecated - Please see new Publishing section/8. Swapping the Database backend to MySQL.mp4150.56MB
18. Publishing - Deprecated - Please see new Publishing section/9. Fixing the Ignored include warnings in the API.mp483.06MB
19. Course Updates - August 2019/1. Updating the .Net Core project to use .Net Core 2.2.mp4179.77MB
19. Course Updates - August 2019/2. Updating the Angular v6 project to Angular v8.mp4182.1MB
2. Building a Walking Skeleton/1. Introduction.mp45.61MB
2. Building a Walking Skeleton/10. Creating the Angular application using AngularCLI.mp434.1MB
2. Building a Walking Skeleton/11. The Angular bootstrapping and running the Angular app.mp489.01MB
2. Building a Walking Skeleton/12. Adding VS Code extensions used in this course.mp458.4MB
2. Building a Walking Skeleton/13. Making HTTP requests in Angular.mp494.39MB
2. Building a Walking Skeleton/14. Adding CORS support to the API.mp431.69MB
2. Building a Walking Skeleton/15. Displaying data from the API on the HTML page.mp417.97MB
2. Building a Walking Skeleton/16. Adding Bootstrap and Font-Awesome to our Angular app.mp453.97MB
2. Building a Walking Skeleton/17. Adding GIT for source control.mp481.09MB
2. Building a Walking Skeleton/18. Summary of Section 2.mp44.89MB
2. Building a Walking Skeleton/2. Creating the DotNet Core WebAPI using the DotNetCLI.mp432.07MB
2. Building a Walking Skeleton/3. Reviewing the Project files in the DotNet Web API.mp491.57MB
2. Building a Walking Skeleton/4. Running the DotNet Core application.mp465.39MB
2. Building a Walking Skeleton/5. Environment settings and using dotnet watch.mp469.12MB
2. Building a Walking Skeleton/6. Creating the first Model and DataContext.mp476.02MB
2. Building a Walking Skeleton/7. Creating the Database using Entity Framework migrations.mp477.76MB
2. Building a Walking Skeleton/8. Retrieving data from the Database.mp463.92MB
2. Building a Walking Skeleton/9. Making our code asynchronous.mp430.48MB
20. Bonus - Publishing the application to Azure/1. Setting up the Azure Resource group, App Service and Database.mp4105.27MB
20. Bonus - Publishing the application to Azure/2. Publishing the app to Azure.mp4113.73MB
21. Bonus - Identity and Role Management/1. Introduction to Identity.mp47.58MB
21. Bonus - Identity and Role Management/10. Updating the seed method with Roles.mp456.97MB
21. Bonus - Identity and Role Management/11. Adding roles to the JWT Token.mp456.23MB
21. Bonus - Identity and Role Management/12. Policy based authorization.mp472.22MB
21. Bonus - Identity and Role Management/13. Returning the users with their roles.mp435.41MB
21. Bonus - Identity and Role Management/14. Adding the edit roles method in the API.mp488.24MB
21. Bonus - Identity and Role Management/15. Creating the Admin Component in the SPA.mp436.3MB
21. Bonus - Identity and Role Management/16. Updating the Auth guard to protect routes based on user role.mp469.96MB
21. Bonus - Identity and Role Management/17. Adding a custom structural directive.mp470.45MB
21. Bonus - Identity and Role Management/18. Adding the admin service and user management component.mp470.94MB
21. Bonus - Identity and Role Management/19. Adding a Modal Component.mp478.35MB
21. Bonus - Identity and Role Management/2. Getting to the starting point for this bonus section.mp442.54MB
21. Bonus - Identity and Role Management/20. Passing the roles data into the Modal.mp475.16MB
21. Bonus - Identity and Role Management/21. Passing data out of the Modal and hooking up to the API.mp497.98MB
21. Bonus - Identity and Role Management/22. Challenge - Creating the Photo Management system,.mp481.61MB
21. Bonus - Identity and Role Management/23. Challenge Solution.mp4183.95MB
21. Bonus - Identity and Role Management/3. Adding the Identity models.mp441.6MB
21. Bonus - Identity and Role Management/4. Configuring the DataContext for Identity.mp443.34MB
21. Bonus - Identity and Role Management/5. Configuring the Startup.cs class for Identity.mp496.86MB
21. Bonus - Identity and Role Management/6. Fixing the errors and adding a new migration.mp481.29MB
21. Bonus - Identity and Role Management/7. Updating the Seed Users method.mp443.29MB
21. Bonus - Identity and Role Management/8. Updating the Login method.mp485.58MB
21. Bonus - Identity and Role Management/9. Updating the register method.mp446.75MB
3. Security/1. Intoduction.mp45.63MB
3. Security/10. Using DTOs (Data Transfer Objects).mp469.53MB
3. Security/11. Validation in the API.mp494.62MB
3. Security/12. Token Authentication.mp46.17MB
3. Security/13. Creating the Login method in the API.mp4152.77MB
3. Security/14. Using the Authentication middleware.mp476.87MB
3. Security/15. Safe storage of secrets.mp460.81MB
3. Security/16. Summary of Section 3.mp46.32MB
3. Security/2. Storing passwords in the Database.mp44.33MB
3. Security/3. Creating the User model.mp425.21MB
3. Security/4. The Repository pattern.mp47.01MB
3. Security/5. Creating an Interface for the Repository.mp413.48MB
3. Security/6. Creating the concrete Auth Repository and Register Method.mp469.34MB
3. Security/7. Creating the Login repository method.mp464.86MB
3. Security/8. Registering services in the Startup class.mp427.45MB
3. Security/9. Creating the Register method in our Auth Controller.mp474.03MB
4. Client side login and register/1. Introduction.mp43.48MB
4. Client side login and register/10. Adding the register method to the Auth Service.mp450.35MB
4. Client side login and register/11. Summary of Section 4.mp41.63MB
4. Client side login and register/2. Creating the Navigation and Login form.mp462.95MB
4. Client side login and register/3. Introduction to Angular template forms.mp476.11MB
4. Client side login and register/4. Introduction to Angular Services.mp467.71MB
4. Client side login and register/5. Injecting the Angular services in our Components.mp439.85MB
4. Client side login and register/6. Using ngIf to conditionally display HTML Elements.mp470.54MB
4. Client side login and register/7. Adding a component so users can Register to our site.mp469.15MB
4. Client side login and register/8. Parent to Child Component communication using Input properties.mp448.63MB
4. Client side login and register/9. Component Communication Child to Parent using Output properties.mp433.33MB
5. Error Handling/1. Introduction.mp42.77MB
5. Error Handling/2. Handling exceptions in the API.mp497.12MB
5. Error Handling/3. Setting up the Global exception handler in the API.mp4100.04MB
5. Error Handling/4. Handling errors in Angular.mp4157.8MB
5. Error Handling/5. Summary of Section 5.mp43.35MB
6. Adding 3rd party components to our app/1. Introduction.mp44.47MB
6. Adding 3rd party components to our app/2. Wrapping 3rd party libraries as an Angular service.mp479.07MB
6. Adding 3rd party components to our app/3. Using the Angular JWT library to improve token handling.mp459.48MB
6. Adding 3rd party components to our app/4. Using the Angular JWT library to decode tokens.mp474.88MB
6. Adding 3rd party components to our app/5. Adding Ngx Bootstrap to power our Bootstrap components.mp473.7MB
6. Adding 3rd party components to our app/6. Bringing some color to our app with a theme from Bootswatch.mp426.88MB
6. Adding 3rd party components to our app/7. Summary of Section 6.mp44.04MB
7. Routing in Angular/1. Introduction.mp44.5MB
7. Routing in Angular/2. Setting up routing in Angular.mp448.55MB
7. Routing in Angular/3. Setting up our links in the nav component.mp432MB
7. Routing in Angular/4. Using routing in our components.mp426.67MB
7. Routing in Angular/5. Protecting our routes with a route guard.mp439.17MB
7. Routing in Angular/6. Protecting multiple routes with a single route guard using dummy routes.mp448.76MB
7. Routing in Angular/7. Summary of Section 7.mp46.09MB
8. Extending the API/1. Introduction.mp44.46MB
8. Extending the API/10. Using AutoMapper Part 1.mp482.11MB
8. Extending the API/11. Using AutoMapper Part 2.mp475.32MB
8. Extending the API/12. Summary.mp46.16MB
8. Extending the API/2. Extending the User Model.mp463.57MB
8. Extending the API/3. Exploring Entity Framework migrations.mp4104.02MB
8. Extending the API/4. Entity Framework Relationships.mp430.88MB
8. Extending the API/5. Seeding Data to the Database - Part 1.mp481.82MB
8. Extending the API/6. Seeding Data to the Database Part 2.mp4107.47MB
8. Extending the API/7. Creating a new repository for our API.mp459.96MB
8. Extending the API/8. Creating the Users Controller.mp4107.6MB
8. Extending the API/9. Shaping the data to return with DTOs.mp441.21MB
9. Building a great looking User Interface/1. Introduction.mp44.3MB
9. Building a great looking User Interface/10. Creating the Member Detailed View component class.mp460.56MB
9. Building a great looking User Interface/11. Designing the Member detailed view template - left hand side.mp440.38MB
9. Building a great looking User Interface/12. Adding a tabbed panel for the right hand side of the Member detailed page.mp453.55MB
9. Building a great looking User Interface/13. Using Route Resolvers to retrieve data.mp4112.81MB
9. Building a great looking User Interface/14. Adding a photo gallery to our application.mp4124.33MB
9. Building a great looking User Interface/15. Summary.mp45.07MB
9. Building a great looking User Interface/2. Introduction to Interfaces in Typescript.mp45.79MB
9. Building a great looking User Interface/3. Adding Interfaces to our Typescript code.mp427.04MB
9. Building a great looking User Interface/4. Creating another Angular service.mp461.34MB
9. Building a great looking User Interface/5. Retrieving the Members into the Member List Component.mp442.44MB
9. Building a great looking User Interface/6. Creating Member Cards to display on our Member list page.mp456.35MB
9. Building a great looking User Interface/7. Giving our Members some style with CSS.mp423.95MB
9. Building a great looking User Interface/8. Adding animated buttons to the member cards.mp444.19MB
9. Building a great looking User Interface/9. Using Auth0 JwtModule to send up jwt tokens automatically.mp454.04MB