Create ASP.Net Core Web API (step by step for beginners)
Create ASP.Net Core Web API (step by step for beginners), available at $74.99, has an average rating of 4.5, with 131 lectures, based on 434 reviews, and has 3534 subscribers.
You will learn about Creation of CRUD API in Asp .Net Core .Net Core Services Data Transfer Objects (DTO) Use of DbContext for 1-to-many and many-to-many relationship Understanding of Dependency Injection Understanding of the use of Interfaces in C# and .Net Core This course is ideal for individuals who are Students new to .Net Core (but not new to C#) or Students who want to build CRUD API in .Net Core or Students who learn best by hands-on programming or Students who can dedicate time to doing homework assignments It is particularly useful for Students new to .Net Core (but not new to C#) or Students who want to build CRUD API in .Net Core or Students who learn best by hands-on programming or Students who can dedicate time to doing homework assignments.
Enroll now: Create ASP.Net Core Web API (step by step for beginners)
Summary
Title: Create ASP.Net Core Web API (step by step for beginners)
Price: $74.99
Average Rating: 4.5
Number of Lectures: 131
Number of Published Lectures: 131
Number of Curriculum Items: 131
Number of Published Curriculum Objects: 131
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- Creation of CRUD API in Asp .Net Core
- .Net Core Services
- Data Transfer Objects (DTO)
- Use of DbContext for 1-to-many and many-to-many relationship
- Understanding of Dependency Injection
- Understanding of the use of Interfaces in C# and .Net Core
Who Should Attend
- Students new to .Net Core (but not new to C#)
- Students who want to build CRUD API in .Net Core
- Students who learn best by hands-on programming
- Students who can dedicate time to doing homework assignments
Target Audiences
- Students new to .Net Core (but not new to C#)
- Students who want to build CRUD API in .Net Core
- Students who learn best by hands-on programming
- Students who can dedicate time to doing homework assignments
Welcome to Creating CRUD API in Asp .Net Core and Entity Framework Core.
As the title of the course suggests, we will be creating an API that will handle Creating, Reading, Updating and Deleting records from a database with the help of .Net Core and Entity Framework.
This course is all about CRUD operations. Step by step, we will set up a complete API to handle each of the operations in a multi-table database. For the next several hours, we will dedicate our time to interfaces, dependency injection, 1 to many and many to many database relationships, .Net Core Services, Models, Data Transfer Objects, Controllers and Actions, and of course, C# language. But don’t let any of that scare you. Quite the opposite.
Get excited to learn a ton of new material and dive into the new world of .Net core. The course makes the learning easy with the mix of slow introduction of new material, repetition, and lot of practice! Every line of code is coded on camera, there are no mysteriously appearing blocks of code. Every step is explained every time, not just the first time you are introduced to it. And you will have a chance to practice what you learned in homework assignments.
Let’s go over few details. First, let’s discus what this course IS
-
Introduction to creating CRUD API using Asp .net Core and Entity Framework.
-
We go over complete creation of CRUD API
-
I introduce new concepts as they are needed in regards to progression of the project
-
This is a “follow along” and “practice what you learned” course
-
No code is skipped over.
What this course is NOT:
-
Complete or Deep Dive course
-
Learn C# or .net core course
-
Theory with explanation and code snippets
-
Ready to Deploy Real World project
1. API are a huge subject, and so is net core and so is Entity Framework. In this course we will create a CRUD Web API in .Net Core. Nothing more, nothing less. Do not expect a dive into security, database optimization, asynchronous processing or anything else. Just CRUD. Pure and simple. We will work only with C# language inside .net core. So do not expect any javascript or fancy javascript framework or library. There is none in this course. But don’t expect to use this course as a “Learn C# course”. It is not that. I’m sure you will pick up some new syntax and C# tricks, but you do need some C# skills prior to taking this course. The project we use is a great starting point as it introduces several of the essential techniques and concepts, including often neglected CRUD operations on database tables with many-to-many relationships, this certainly isn’t a deploy-ready project.
2. Remember, this is a course, and a practical tutorial. There are lot of courses that will show you the way into one topic and then quickly move on to another topic. This is not one of those courses! My goal is to lead you step by step, all the way, through the new territory inside .Net core and introduce you to new concepts and topics and help you learn them. And equally important is to then help you understand and retain what you learned through practice and repetition. If you prefer to be shown something once and then jump to another topic, then this course is NOT for you. If, on the other hand, you learn by combining explanation, coding along, and practicing the concepts while still having the option to see the instructor coding the whole solution, then this course is definitely for you!
3. Did this ever happen to you? You took a course, and you just loved it! Everything was clearly explained, and you had lots of aha moments. Then the course ended…and suddenly, you felt lost. You felt like you learned so much while taking the course, yet could barely remember anything once it ended. Even when you revisited the source code supplied by the instructor, it just didn’t even seem familiar. Suddenly you felt like you didn’t learn anything. All the concepts that seemed so clear during the course felt totally foreign when you were on your own. In my experience, this is often the case when you simply take a course that starts exactly where your current skills are, but moves past the threshold of skills you are ready for. Like trying to go from crawling straight to sprinting. In this course, we go step by step, introducing new concepts slowly and only after you had a chance to practice what you learned.
4. is this course for you? What skills should you have before taking it? If you are a programmer with decent understanding of OOP principles and C#, than you have the all the skills needed to benefit from this course. There are no prerequisites for .net core, or entity framework or how to create an API. Since you are interested in this course, I assume you heard of these things and perhaps played around a little too. That’s all that is needed to take this course.
Well, let’s code!
Course Curriculum
Chapter 1: Introduction
Lecture 1: Introduction
Lecture 2: Demonstration of the Final API
Lecture 3: Source Code, Help, Discounts, and Misc
Chapter 2: Preparing the .Net Core Services, Models, and Database
Lecture 1: .NET CORE 3.1 ONLY – Creating New Project
Lecture 2: .NET CORE 2.2 ONLY – Creating New Project
Lecture 3: .NET CORE 3.1 ONLY – Adding MVC Service
Lecture 4: .NET CORE 2.2 ONLY – Adding MVC Service
Lecture 5: Relationships And Properties for Classes
Lecture 6: Creating Models
Lecture 7: One To Many Relationship Requirements
Lecture 8: Creating Navigational Properties For 1-to-Many Relationships
Lecture 9: Many to Many Relationships Requirements
Lecture 10: Creating Intermediary Classes
Lecture 11: Summary of Relationships Between Entities
Lecture 12: Data Annotation
Lecture 13: HOMEWORK: Data Annotation
Lecture 14: More Data Annotation
Lecture 15: .NET CORE 3.1 ONLY – Adding NuGet Packages
Lecture 16: .NET CORE 2.2 ONLY – Adding NuGet Packages
Lecture 17: Adding Connection String
Lecture 18: Adding DbContext
Lecture 19: Adding OnModelCreating Method
Lecture 20: HOMEWORK: Adding BookAuthor Intermediary Class to ModelBuilder
Lecture 21: Adding BookAuthor Intermediary Class to ModelBuilder
Lecture 22: Creating Database Migration
Lecture 23: Seeding The Database
Lecture 24: .NET CORE 3.1 ONLY – Seeding The Database and Reviewing Inserted Data
Lecture 25: .NET CORE 2.2 ONLY – Seeding The Database and Reviewing Inserted Data
Chapter 3: Creating API's – Before we start
Lecture 1: Reviewing API Calls Requirements
Lecture 2: Dependency Injection And Inversion of Control
Chapter 4: Creating Countries HttpGet API
Lecture 1: Creating ICountryRepository Interface
Lecture 2: Implementing ICountryRepository Interface Part 1
Lecture 3: Implementing ICountryRepository Interface Part 2
Lecture 4: Creating GetCountries API
Lecture 5: Testing GetCountries API
Lecture 6: Registering ICountryRepository Interface Service
Lecture 7: Creating Country DTO (Data Transfer Objects)
Lecture 8: Finishing GetCountries API
Lecture 9: Creating GetCountry API
Lecture 10: Creating GetCountryOfAnAuthor API
Chapter 5: Creating Categories HttpGet API
Lecture 1: HOMEWORK: Implement ICategoryRepository Interface and API
Lecture 2: Creating ICategoryRepository Interface
Lecture 3: Implementing GetCategories and GetCategory Methods
Lecture 4: Finishing Implementation of ICategoryRepository
Lecture 5: Creating GetCategories API
Lecture 6: Creating GetCategory API
Lecture 7: Creating GetAllCategoriesForBook API
Chapter 6: Finishing DTO and Interfaces for Reviews, Reviewers, Authors, and Books
Lecture 1: HOMEWORK: Create Remaining DTO Classes
Lecture 2: Creating Remaining DTO Classes
Lecture 3: HOMEWORK: Crate Remaining Interfaces
Lecture 4: Creating IBookRepository Interface
Lecture 5: Creating IAuthorRepository Interface
Lecture 6: Creating IReviewerRepository Interface
Lecture 7: Creating IReviewRepository Interface
Chapter 7: Finishing Country and Category Interface Implementation
Lecture 1: Implementing GetAuthorsFromACountry Method
Lecture 2: Implementing GetAllBooksForCategory Method
Chapter 8: Creating Reviewer HttpGet API
Lecture 1: HOMEWORK: Implement IReviewerRepository Interface and API
Lecture 2: Implementing IReviewerRepository Interface
Lecture 3: Creating GetReviewers API
Lecture 4: Creating GetReviewer API
Lecture 5: Creating GetReviewsByReviewer API
Lecture 6: Creating GetReviewerOfAReview API
Chapter 9: Creating Review HttpGet API
Lecture 1: HOMEWORK: Implement IReviewRepository Interface and API
Lecture 2: Implementing IReviewRepository Interface
Lecture 3: Creating GetReviews API
Lecture 4: Creating GetReview API
Lecture 5: Creating GetReviewsOfABook API
Lecture 6: Creating GetBookOfAReview API
Chapter 10: Creating Author HttpGet API
Lecture 1: HOMEWORK: Implement IAuthorRepository Interface and API
Lecture 2: Implementing IAuthorRepository Interface
Lecture 3: Creating GetAuthors API
Lecture 4: Creating GetAuthor API
Lecture 5: Creating GetBooksOfAuthor API
Lecture 6: Creating GetAuthorsOfABook API
Chapter 11: Creating Book HttpGet API Calls
Lecture 1: HOMEWORK: Implement IBookRepository Interface and API
Lecture 2: Implementing IBookRepository Interface
Chapter 12: Creating IsDuplicate Validation for Country and Category
Lecture 1: HOMEWORK: Implement DuplicateCountry and DuplicateCategory Methods
Lecture 2: Implementing IsDuplicateCountry and IsDuplicateCategory Methods
Lecture 3: Finishing Testing from our ToDo List
Chapter 13: Continuing Creating HttpGet API Calls For Book
Lecture 1: Creating GetBooks API
Lecture 2: Creating GetBook API
Lecture 3: Creating GetBookRating API
Chapter 14: Create, Update, And Delete APIs
Lecture 1: Review of Create, Update, and Delete API Calls
Chapter 15: Create, Update, And Delete API for Country
Lecture 1: Adding Create, Update, Delete Methods to ICountryRepository Interface
Lecture 2: Implementing Create, Update, Delete Methods For ICountryInterface
Instructors
-
Pavol Almasi
Computer Programmer at Berkshire Hathaway Company
Rating Distribution
- 1 stars: 7 votes
- 2 stars: 7 votes
- 3 stars: 55 votes
- 4 stars: 134 votes
- 5 stars: 231 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024