Login: Password:  Do not remember me

Categories




E-Books / Video TrainingAsp.Net Core Web Api Bootcamp - Build Rest Apis With C# .Net



Asp.Net Core Web Api Bootcamp - Build Rest Apis With C# .Net
Published 1/2023
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 5.79 GB | Duration: 10h 46m
Learn ASP.NET Core Web API, Entity Framework Core, LINQ, Minimal Web API, .NET 7, C#, SQL, Azure Hosting, OAuth 2.0


What you'll learn
ASP Dotnet Core Web API
EF Core (Entity Framework Core)
SQL
LINQ - Language Integrated Query
HTTP
REST
Azure Hosting
Authentication and Authorization using Azure AD
OAuth 2.0
Azure API Management
Minimal API
Azure Blob Storage
Logging
File Upload and Download
Applying everything in a real world Course Project
Requirements
Fundamental C# Skills
Windows OS installed
Visual Studio Community Edition
Azure Subscription (Free subscription is enough)
Postman
Sqlite Browser
Description
Do you want to build restful Web APIs? ASP.NET Core Web API is one of the best frameworks to accomplish that. Are you interested in learning ASP.NET Core Web API and you are looking for a comprehensive course about the topic, created by an experienced ASP.NET Core developer? Then this course is for you.Learning how to develop restful Web APIs is not only about learning ASP.NET Core Web API, but also about learning concepts like HTTP, REST, databases and methodology. In this course we are starting with the absolute basics. You only need some fundamental C# knowledge, to be able to follow this course.The best way to learn a new framework is coding. This is why this course is focused on live coding sessions a lot. You can follow along coding the examples yourself for the best and most effective learning experience. This course also includes lot info sheets and cheat sheets for future reference. We are also creating a complete Web API from scratch. You can use this project as a template and reference for future projects.What you will learn in this course:1. HTTP: HTTP is the foundation of the web and also for WEB APIs. You will learn the basics about Http. We will also talk about Http request methods and status codes.2. REST: When it comes to WEB APIs, people are often talking about REST. You will learn what REST is and which guidelines your service should follow, to be called a restful service.3. SQL: Usually we are storing data using relational databases. The language to work with these relational databases is SQL (structured query language). You will learn the basics about SQL. That includes but is not limited to creating tables, inserting data and updating data, querying data and deleting data.4. C# Advanced Concepts: We will talk about some advanced concepts and language constructs in C#, that you need, to be able, to follow the course. If you are missing anything in this section, please let me know.5. LINQ: Linq (Language Integrated Query) is needed in different kinds of situations, when you are working with ASP.NET Core. You will create your own solution covering a lot of LINQ examples. You can use this solution as a cheat sheet later.6. EF Core (Entity Framework Core): Entity Framework Core is the most used data access framework for C#. We will talk about everything needed, to get you started using EF Core. You will also create a solution containing examples, that you can use as a cheat sheet.7. ASP.NET Core Web API: We will explore the project structure of ASP.NET Core Web API projects. You will learn all the important features and concepts in ASP.NET Core. We will talk about Controllers, the entry point of the application, HTTP Context, API Documentation using Swagger, Minimal APIs and Middlewares.8. Azure Hosting: You will learn, how to host your API in Microsoft Azure. We will also look into Azure API Management.9. Authentication & Authorization: Most of the time, you want to secure your APIs. The modern approach of securing an API is using OAuth 2.0. We will implement Authentication & Authorization using OAuth 2.0 and Azure AD.10. File Upload and Download: Another very important feature, that you often want to implement in your APIs is file upload and download. We will implement file upload and download using normal storage in the file system of your web server. You will also learn, how to utilize Azure Blob Storage, to store your files.11. Logging: Every good application needs logging and Web APIs are no exception. You will learn how to implement logging in ASP.NET Core.This course contains:InfosheetsCheatsheetsDownloadable Source CodeIf you have any questions, please don't hesitate to ask in the Questions & Answers section of this course. I will happily answer your questions as soon as possible.
Overview
Section 1: Einführung
Lecture 1 Welcome
Lecture 2 Introduction
Section 2: HTTP - Hypertext Transfer Protocol
Lecture 3 HTTP Overview
Lecture 4 HTTP Request Methods
Lecture 5 HTTP Status Codes
Lecture 6 Infosheet
Section 3: REST - Representational State Transfer
Lecture 7 REST Overview
Lecture 8 The 4 REST Constraints
Lecture 9 Infosheet
Section 4: C# Advanced constructs
Lecture 10 Introduction
Lecture 11 Async Await
Section 5: SQL Overview
Lecture 12 Introduction
Lecture 13 Sqlite Browser
Lecture 14 Create Table
Lecture 15 Insert
Lecture 16 Select
Lecture 17 Like
Lecture 18 Update
Lecture 19 Delete
Lecture 20 Foreign Keys
Lecture 21 Join
Lecture 22 Infosheet
Lecture 23 Challenge
Lecture 24 Solution
Section 6: LINQ
Lecture 25 Introduction
Lecture 26 Create the Solution
Lecture 27 Data Model
Lecture 28 Where
Lecture 29 First and Single
Lecture 30 Any and All
Lecture 31 Working with numbers
Lecture 32 Order By
Lecture 33 Select
Lecture 34 Fluent
Lecture 35 Challenge
Lecture 36 Solution
Section 7: Entity Framework Core
Lecture 37 Introduction
Lecture 38 Data Model
Lecture 39 DbContext Theory
Lecture 40 DbContext Practice
Lecture 41 The 2 Approaches
Lecture 42 Code First
Lecture 43 Database First
Lecture 44 Insert
Lecture 45 Select & Delete
Lecture 46 Change Tracking & Update
Lecture 47 Repository
Lecture 48 Generic Repository
Section 8: ASP.NET Core Web API
Lecture 49 Introduction
Lecture 50 Dependency Injection
Lecture 51 Controllers
Lecture 52 Middlewares
Lecture 53 Create a Middleware
Lecture 54 HTTP Context
Section 9: Course Project
Lecture 55 Introduction
Lecture 56 Create the Solution
Lecture 57 Folder Structure Part 1/2
Lecture 58 Folder Structure Part 2/2
Lecture 59 Data Model
Lecture 60 Database
Lecture 61 Generic Repository
Lecture 62 Dtos - Data Transfer Objects
Lecture 63 Address Controller
Lecture 64 Address Service
Lecture 65 Job Controller
Lecture 66 Employee Controller 1/2
Lecture 67 Employee Controller 2/2
Lecture 68 Team Controller 1/2
Lecture 69 Team Controller 2/2
Lecture 70 Exception Middleware
Lecture 71 Validation
Lecture 72 Error Handling
Lecture 73 Challenge
Lecture 74 Solution
Lecture 75 Challenge
Lecture 76 Solution
Lecture 77 Team Error Handling
Section 10: Minimal Web APIs
Lecture 78 Introduction
Lecture 79 Dependency Injection
Lecture 80 Logging
Lecture 81 Statuscodes
Lecture 82 Middlewares
Lecture 83 Routing
Section 11: Azure Hosting
Lecture 84 Registration
Lecture 85 Create the App Service
Lecture 86 Deploy to Azure
Lecture 87 Test the API
Lecture 88 Configuration
Lecture 89 Subscriptions
Section 12: Azure Authentication & Authorization
Lecture 90 Introduction
Lecture 91 App Registration
Lecture 92 API Configuration
Lecture 93 Postman Test
Lecture 94 Authorization
Lecture 95 Swagger Authorization Code Flow + PKCE
Section 13: File Upload & Download
Lecture 96 File Service
Lecture 97 File Validator
Lecture 98 Employee Service
Lecture 99 Download Controller
Lecture 100 Azure Blob Storage
Section 14: Logging
Lecture 101 Introduction
Lecture 102 Logging
Section 15: Conclusion
Lecture 103 Thank you!
Everyone who wants to learn ASP Dotnet Core Web API from A-Z


Homepage
https://www.udemy.com/course/aspnet-core-web-api-csharp-dotnet-course-bootcamp/


Buy Premium From My Links To Get Resumable Support,Max Speed & Support Me


Fikper
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part5.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part1.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part6.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part4.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part3.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part2.rar.html
Asp.Net Core Web Api Bootcamp - Build Rest Apis With C# .Net
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part1.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part6.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part2.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part5.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part3.rar.html
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part4.rar.html
Asp.Net Core Web Api Bootcamp - Build Rest Apis With C# .Net
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part5.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part4.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part6.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part2.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part3.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part1.rar
Asp.Net Core Web Api Bootcamp - Build Rest Apis With C# .Net
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part6.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part4.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part3.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part2.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part1.rar
eonwd.Asp.Net.Core.Web.Api.Bootcamp..Build.Rest.Apis.With.C..Net.part5.rar

Links are Interchangeable - No Password - Single Extraction


[related-news]

Related News

    {related-news}
[/related-news]

Comments (0)

Search



Updates




Friend Sites


» TinyDL
» DownTra
» 0dayHome

Your Link Here ?
(Pagerank 4 or above)