ASP.NET CORE MVC | Build a Complete eCommerce App
ASP.NET CORE MVC | Build a Complete eCommerce App, available at $84.99, has an average rating of 4.6, with 108 lectures, 8 quizzes, based on 1292 reviews, and has 17887 subscribers.
You will learn about .NET MVC BUILDING BLOCKS – Models, ViewModels, Views, Partial views, Controllers, ViewComponents etc. CRUD OPERATIONS WITH ENTITY FRAMEWORK CORE – SQL Server configuration, EFCore migrations, relationship types, relational and non-relational data etc. BUILD RESTFUL SERVICES – Dependency injection, major dependency injection lifetimes, services, and generic base repositories etc. .NET IDENTITY FRAMEWORK – Authentication, authorization, cookie-based authentication, role-based UI rendering etc. PAYPAL INTEGRATION – Configuring the PayPal checkout library, create and process payments etc. AZURE DEPLOYMENT – Deploy your MVC application and your SQL database to azure etc. This course is ideal for individuals who are Any developer interested in learning how to build ASPNET MVC applications from scratch It is particularly useful for Any developer interested in learning how to build ASPNET MVC applications from scratch.
Enroll now: ASP.NET CORE MVC | Build a Complete eCommerce App
Summary
Title: ASP.NET CORE MVC | Build a Complete eCommerce App
Price: $84.99
Average Rating: 4.6
Number of Lectures: 108
Number of Quizzes: 8
Number of Published Lectures: 108
Number of Published Quizzes: 7
Number of Curriculum Items: 116
Number of Published Curriculum Objects: 115
Number of Practice Tests: 1
Original Price: $99.99
Quality Status: approved
Status: Live
What You Will Learn
- .NET MVC BUILDING BLOCKS – Models, ViewModels, Views, Partial views, Controllers, ViewComponents etc.
- CRUD OPERATIONS WITH ENTITY FRAMEWORK CORE – SQL Server configuration, EFCore migrations, relationship types, relational and non-relational data etc.
- BUILD RESTFUL SERVICES – Dependency injection, major dependency injection lifetimes, services, and generic base repositories etc.
- .NET IDENTITY FRAMEWORK – Authentication, authorization, cookie-based authentication, role-based UI rendering etc.
- PAYPAL INTEGRATION – Configuring the PayPal checkout library, create and process payments etc.
- AZURE DEPLOYMENT – Deploy your MVC application and your SQL database to azure etc.
Who Should Attend
- Any developer interested in learning how to build ASPNET MVC applications from scratch
Target Audiences
- Any developer interested in learning how to build ASPNET MVC applications from scratch
ASP.NET MVC is a design pattern used to archive the separations of concerns. With MVC(model-view-controller) you can easily decouple user-interface (view), data (model), and application logic (controller).
This course will teach you all you need to know to build personal or commercial applications using ASP.NET MVC (.NET 5) as your development framework. You will start with just an empty project in Visual Studio and build your app from the ground up.
As data storage, you will use an SQL database and Entity Framework will be used to interact with your data. You will also learn how to update database schema using Entity Framework migrations, how to add data to the database, get data from the database, update data in the database and also delete data from the database.
You will learn about creating services to work with your data, but also create generic services/repositories to help you implement commonly used tasks like creating, reading, updating, and deleting data from the database.
Other important features include dynamic content rendering with ViewComponenets, Paypal payments integration role-based UI rendering.
You will learn all these, step by step with hands-on practice. You will also have a lot of quizzes that will help to improve your knowledge of the ASP.NET MVC framework.
Some of the topics that this course covers are:
-
Introduction to ASP.NET MVC
-
Models vs ViewModels
-
Views vs PartialViews
-
SQL server configuration with Entity framework
-
Entity Framework migrations
-
Adding, Getting, Updating and Deleting data from an SQL database using Entity Framework
-
Working with relational and non-relational data
-
Dependency injection
-
Major dependency injection lifetimes
-
Static and generic services/repositories
-
Model binding and validation
-
Routing
-
Cookie-based authentication
-
Role-based authorization
-
Role-based UI rendering
-
Dynamic rendering with ViewComponents
-
Online payments using Paypal SDK
and much more…
You can find the source code of this course on my Github account: @etrupja/complete-ecommerce-aspnet-mvc-application
Course Curriculum
Chapter 1: Before you get started
Lecture 1: How to use any version of .NET?
Chapter 2: Welcome
Lecture 1: Application Demo
Lecture 2: What to expect from this course?
Chapter 3: Getting Started
Lecture 1: What is MVC?
Lecture 2: Your first MVC application
Lecture 3: Default application files
Lecture 4: Course code structure
Chapter 4: Building the Data Structure
Lecture 1: Application models overview
Lecture 2: Adding your first model
Lecture 3: Adding producer model
Lecture 4: Adding cinema model
Lecture 5: Adding movie model
Chapter 5: Database Configuration and Management
Lecture 1: Adding your DbContext file
Lecture 2: Adding model relationships
Lecture 3: Configuring SQL Server
Lecture 4: Adding your first migration
Lecture 5: Seeding the database
Chapter 6: Building and Managing Controllers
Lecture 1: Application controllers overview
Lecture 2: Adding the ActorsController
Lecture 3: Adding the ProducersController
Lecture 4: Adding the CinemasController
Lecture 5: Adding the MoviesController
Chapter 7: Understanding Views and UI Design
Lecture 1: Adding your first view (list of actors)
Lecture 2: Adding the producers view
Lecture 3: Adding the cinemas view
Lecture 4: Adding the movies view
Lecture 5: Designing the movie card
Lecture 6: Designing the navigation bar
Chapter 8: Managing Actor Data and Services
Lecture 1: Adding IActorsService interface
Lecture 2: Adding your first service
Lecture 3: Major dependency-injection lifetimes (Singleton vs Scoped vs Transient)
Lecture 4: Designing your first form | Create Actor
Lecture 5: Model Validation – Adding data to database
Lecture 6: Getting item by id (Actor Details)
Lecture 7: Updating data in database (Edit Actor)
Lecture 8: Deleting data from database (Delete Actor)
Lecture 9: Adding NotFound View
Chapter 9: Implementing a Generic Base Repository
Lecture 1: Adding EntityBaseRepository files
Lecture 2: GetAllAsync() & GetByIdAsync() base methods
Lecture 3: AddAsync() method in base repository
Lecture 4: UpdateAsync() & DeleteAsync() methods in base repository
Lecture 5: ActorsService configuration with EntityBaseRepository
Chapter 10: Managing Producer Data with EntityBaseRepository
Lecture 1: ProducersService configuration with EntityBaseRepository
Lecture 2: Getting producer details
Lecture 3: Adding new producer to database
Lecture 4: Updating a producer
Lecture 5: Deleting a producer from database
Chapter 11: Managing Cinema Data with EntityBaseRepository
Lecture 1: CinemasService configuration with EntityBaseRepository
Lecture 2: Adding new cinema to database
Lecture 3: Getting cinema details
Lecture 4: Updating existing cinema
Lecture 5: Deleting a Cinema from database
Chapter 12: Working with movie data
Lecture 1: MoviesService configuration with EntityBaseRepository
Lecture 2: Include() with generic repository
Lecture 3: Getting movie details
Lecture 4: Passing data to a view
Lecture 5: Designing Create Movie form
Lecture 6: Dropdown lists from database
Lecture 7: Partial views – [Add New button]
Lecture 8: Adding new movie to database
Lecture 9: Updating existing movie
Lecture 10: Searching for a movie
Chapter 13: Shopping cart & Orders
Lecture 1: Adding Order & OrderItem models
Lecture 2: Adding ShoppingCartItem model
Lecture 3: Setting up ShoppingCart class
Lecture 4: Creating AddItemToCart() method
Lecture 5: Creating RemoveItemFromCart() method
Lecture 6: Adding OrdersController file
Lecture 7: Designing shopping cart view
Lecture 8: Configuring sessions & shopping cart as a service
Lecture 9: Adding items to shopping cart
Lecture 10: Removing items from shopping cart
Lecture 11: ViewComponents
Lecture 12: Adding and configuring OrdersService
Lecture 13: Ordering items without PayPal
Lecture 14: Listing all orders
Lecture 15: Orders option in user profile section
Chapter 14: Paypal integration
Lecture 1: PayPal Sandbox application
Lecture 2: PayPal checkout button
Instructors
-
Ervis Trupja
Instructor | Web Developer
Rating Distribution
- 1 stars: 19 votes
- 2 stars: 18 votes
- 3 stars: 100 votes
- 4 stars: 382 votes
- 5 stars: 773 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