Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Asp.Net Core 5.0 & Vue JS From Zero to Hero 68 Hours Content
Rating: 4.1 out of 5(35 ratings)
327 students

Asp.Net Core 5.0 & Vue JS From Zero to Hero 68 Hours Content

Learn How To Create Real Life Web Applications With ASP.NET Core 5.0 Entity Framework Mysql,MSSQL Databases and Vue.JS
Last updated 9/2021
English

What you'll learn

  • Students will learn how to Create their own Apps in ASP NET CORE and learn Powerful Asp net core with entity frame work
  • Understand the fundamentals of ASP NET Core with Entity Framework
  • Asp Net Core
  • Vue JS
  • Entity Framework
  • Dapper
  • MySql
  • CSS
  • HTML5
  • MSSQL
  • Everything about ASP NET Core...

Course content

4 sections429 lectures67h 55m total length
  • how to install sql server and management studio7:55

    Learn how to install sql server and sql server management studio on your computer by downloading express edition from the official site, running the installer, and connecting with windows authentication.

  • How to create an Asp.Core Project6:34

    Learn to create an ASP.NET Core web project in Visual Studio by selecting the web app template, targeting .NET 5.0, using the model–view–controller pattern, and enabling Razor runtime compilation.

  • About Our Project's Folders8:35

    Discover the ASP.NET Core project folders, including wwwroot, controllers, models, and views, and how dependencies and packages support the home controller actions like index and privacy.

  • How to Create A Controller and Template File7:17

    Explore the controllers and lives folders, and identify the home controller with index and privacy templates. Create a new controller and its template file, and render content in the template.

  • How to use ViewData,ViewBag and Tempdata4:43

    Learn how to use ViewData, ViewBag, and TempData to create and pass messages in an ASP.NET Core MVC app, and display them in views.

  • How To Create A Model6:31

    Create a model class with properties name and surname, add it to the models folder, instantiate it in the home controller, and display the model in the view template.

  • How To Create a List of our model and Display it in a Template file5:20

    Create a list of person models, populate with several entries, and display the list in a template using a for-each loop to show each name and surname.

  • What is a Layout8:09

    Explain what a layout is and how it works in ASP.NET Core apps, using header and left navigation to provide a consistent experience, with the content area changing per page.

  • How To Change NavBar4:35

    Learn to replace the navigation bar with a Bootstrap menu, apply a blue background, and route the home page via ASSP controllers to the home index action.

  • How To Create A Database5:38

    Learn to create a database using sql server management studio, name the database, and design two tables—posts and users—with primary keys, identity, and date fields.

  • How To Connect A Database6:35

    Learn to connect your database by building a connection string, specify the server and database names, and enable a trusted connection and multiple active result sets with Edu Net.

  • How To Create Db Entities5:03

    Create an entities folder and two classes to map the post and user tables, defining postId, userId, title, content, publishingDate, and modifiedDate, then connect the database with a connection string.

  • How To Create A Post Service8:30

    Create a post service to access posts and users, connect to the database, configure the default connection, and apply Microsoft extension's dependency injection.

  • How To Get All Posts From Database12:48

    learn to fetch all posts from the database with a get all posts function, populate a post list via data readers, and display them in the main template.

  • How to Display Our Articles in Our Template file8:39

    Learn to fetch all articles from the database and display them on the main page using a post service, wiring the controller, model, and view to show title and dates.

  • How to Use a Bootstrap Card component for our design7:46

    Learn to improve post listing design by implementing a Bootstrap card with image, title, content, and dates; customize the layout with margins and center alignment to enhance visual appearance.

  • How to use a Model9:45

    Create and use a blog model with post list and user list in asp.net core 5, wiring get and set to display articles in the view.

  • How To Create Function of Post Detail Page7:59

    Learn to create a post detail function that retrieves a single article by id using a parameterized SQL query on the Post table, mapping results to a post object.

  • Creating Post Detail Model4:34

    Build a post detail model in asp.net core by wiring a detail action in the home controller, creating a blog model, and returning a populated view.

  • How to Create Post Detail Template File11:31

    Create a post detail template and page using the home controller, post model, and Razor to display the post title, date, and content with 150-character truncation.

  • How To Create A Relationship for our Tables10:20

    Create a one-to-many relationship between posts and users by adding a writer property, configuring foreign keys, and joining tables to display the writer's username in post details.

  • How to create a connection Service8:48

    this lesson shows how to build a central connection service in ASP.NET Core, configure it once, and use it across user and postal services without duplication.

  • How Create User Get Function10:04

    Implement a get user function in the user service by querying a user by id, mapping id, username, and password with a data reader, and returning it to the controller.

  • How To Create Users Get All Function4:20

    Create a get all users function in the user service, fetch all users from the database using a select star from user table, and populate a list of user objects.

  • How to create user login form9:54

    Create a new user controller with a login action and build a login form featuring username and password inputs, a post method, and a submit button.

  • How To Create User Login Action Result5:42

    Create a login action result for get and post methods and wire a login form to the user controller, validating username and password.

  • How To Create User Login Function7:12

    Create login functionality in the user service with a main login method and an overload that accepts username and password, returning the user via a parameterized query.

  • How To Create User Login Action Result Part111:04

    Create and utilize a user login service within the app, verify user credentials, and store user id and username in cookies before redirecting to the index page.

  • How To Create User Login Action Result Part28:45

    Configure a user login flow using cookies and a login model with user, message, and success properties; display an error message on failed logins and redirect to the index.

  • How to Modify Login cshtml file8:55

    Modify the login cshtml to use the login model, display success and error messages, and return the model in the get and post actions to fix the reference exception.

  • How to check user cookie validation4:18

    Validate user cookies to secure login in ASP.NET Core 5.0 and Vue JS app; ensure user index shows only with a valid user id and name, otherwise redirect to login.

  • How To List All Post For Our Users5:37

    Log in to display all posts for the user, enabling create, edit, and delete actions via the user controller index and the post service get all to render blog list.

  • Creating Template File Of Index Action Result8:45

    Create an index view template that renders a posts table with id, title, writer name, and actions for edit, delete, and create, using a for-each loop to display posts.

  • How To Modify NavBar9:21

    Modify the navigation bar to reflect login status by reading cookies, display the username and user panel when logged in, and show login/register options otherwise.

  • How To Create A template file for Create Action Result part19:02

    Create a new article using a template for the create action, fix navigation by removing disabled links, and bind a post model with title and content in ASP.NET Core.

  • How To Create A template file for Create Action Result part211:49

    Create a post form for the user panel using ASP.NET Core, including title and content inputs, Bootstrap styling, and a post action with model validation for creating records.

  • How To Create Post Create Function9:59

    Learn to create a post using a service and controller: implement a post method, construct the post model, and insert user id, title, content, publishing and modified dates.

  • How to use Create Action Result to Create Our Posts9:17

    Implement a create action to save posts by capturing title and content, setting publishing and modified dates, retrieving user id from cookies, and redirecting on success or showing errors.

  • How To Create Update Get Action Result14:22

    Learn to implement update and get actions for editing articles in ASP.NET Core, using id parameters, templates, and redirect to action after validation.

  • How To Create Post Update Service Function5:45

    Create a post update service function in ASP.NET Core that updates the post table's title, content, modified date, and hash via parameters and a query, returning a boolean success flag.

  • How To Create Update Action Result to Update Our Posts4:49

    Shows implementing an update action result for posts, updating the post object with a modified date, calling the post service update, and redirecting to the index on success.

  • How To Create Delete Service Function5:24

    Implement a delete service function to remove articles from the database via a controller action and route, executing a delete query and handling success in ASP.NET Core 5.0.

  • how to create delete action result functions in our controller9:00

    Learn to implement delete action results in a controller with get and post methods, handle post IDs, redirects, and blog model updates using a post service.

  • how to create delete template file7:37

    Learn to create and delete a template file within an ASP.NET Core MVC app, including get and post delete actions, form usage, and error handling in the delete flow.

  • how to create deleteit template file6:07

    Learn how to create a delete template file, implement delete functionality, handle errors and success messages with alert classes in admin panel, and prepare for searching posts and logout features.

  • how to create search service function9:38

    Learn to implement a database search by updating the search form and layout, wire a home/search action, and create a service function to query posts by title or content.

  • how to search for our articles4:32

    Implement a search in the home controller with a search action that uses a post service to fetch results by search text and render them on the index template.

  • how can our users log out4:02

    learn how to log out by deleting user name and user id cookies via http context, then redirect to the home page.

Requirements

  • Basic C#,HTML,,CSS and JavaScript Skills, PC capable of running Google Chrome, Visual Studio Code Editor

Description

WANT TO LEARN ASP.NET Core with Entity Framework?

“Want to make a good beginning in ASP.NET Core? Then this course is for you”

The content of the course is delivered in a very clear manner we will learn everything step by step and build many APPS. First of We will never use Console because its boring so we will learn how to create real app and that will make you eager. 

THIS IS THE ONE OF THE BEST ASP.NET Core COURSE WHO WANTS TO LEARN ASP.NET Core AND CREATE REAL APPS IN ASP.NET Core.

This is the BEST COURSE CHOICE for completely beginners — anybody who wants to be a ASP.NET Core programmer but hasn’t any idea of where to begin.

Here’s great news: If you can type, install a program, and open your browser in your Computer, you’re good to go.

What is ASP.NET Core...

 ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET Core. However ASP.NET Core version 3 works only on .NET Core dropping support of .NET Framework.

WHY this ASP.NET Core course?

You’re a newcomer to coding and want to learn everything from scratch? You’ll learn ASP.NET Core programming language, with clear instruction and well detailed videos. And you’ll write your own codes

What We Will Do?

The BEST way to become a proficient programmer its about writing lots of code and learn different examples. Don't worry we will do that we will type a lot of code and build many different apps. We will learn how to use functions in ASP.NET Core and create different real apps. We will also create database apps in ASP.NET Core and learn how to use MsSQL and MySQL.

Other good news is we will also create different apps in ASP.NET Core and you will learn ASP.NET Core programming.

Finally i want to say what ASP.NET Core is very powerful language you can create many different apps with it.

Who this course is for:

  • The Students looking for complete ASP NET CORE, Dapper and Vue JS course and coders who want to learn ASP NET CORE