HI WELCOME TO KANSIRIS

ASP.net mvc and angularjs development

Leave a Comment

About the course

The ASP.NET MVC with Angular4 Development course is primarily designed for .NET Beginner(s)/Professional(s) who want to learn how to create web applications using ASP.NET MVC and Angular4. In this course, you will learn how to create web pages, custom validation attributes, custom helpers, querying database using Entity Framework ORM, making page more interactive using Angular4, mobile friendly application and finally publish it on IIS.

Course objectives

At the completion of this course, attendees will be able to;
  1. Create custom html helpers and validations attributes
  2. Query database using Entity Framework ORM code first approach
  3. Design and develop scalable architecture
  4. Create DAL Layer using Entity Framework Code First approach
  5. Scale application for Phone, Tablets, Laptop & Desktop
  6. Understand and Implement Repository, Unit of Work and Dependency Injection Design Pattern
  7. Understand Typescript core and advanced concepts
  8. Do errors logging by using ELMAH
  9. Optimize web page performance
  10. Understand Filters and Apply filters
  11. Secure application based on user roles
  12. Secure ASP.NET Web API using Token based security
  13. Publish theirs Apps on IIS

Who can do this course?

All .NET Beginner(s)/Professional(s) who are keen to develop interactive, light weight and highly extensible web application should go for this course.

Pre-requisites

Anyone who wants to learn ASP.NET MVC with AngularJS development should have a basic knowledge of C#, JavaScript and HTML.

Tools/IDE

Visual Studio 2015 or higher, SQL Server 2012 or Higher


Introduction

  1. Introduction to ASP.NET MVC
  2. ASP.NET MVC vs. ASP.NET Web Form
  3. Advantagesof ASP.NET MVC

Visual Studio Project Templates

  1. Understanding Visual Studio ASP.NET MVC Templates
  2. Creating an ASP.NET MVC project
  3. Understanding ASP.NET MVC project folder structure
  4. Understanding configuration files

Model, View, Controller & Actions

  1. Understanding Model, View and Controller
  2. Types of Views
  3. Creating Controller
  4. Understanding Actions
  5. Actions and Non-Actions Methods
  6. Understanding Action Results
  7. Communication between Controller and View

Razor View Engine

  1. Understanding Razor View Engine
  2. Razor View Engine vs. Web Form Engine
  3. Razor Syntax
  4. Razor Statements, Loops etc.

Routes & URLs

  1. Introduction to Routing
  2. Defining Routes
  3. Attribute Routing
  4. Need of attributes routing

Helpers

  1. Understanding Html Helpers
  2. Types of Html Helpers
  3. Built-In Html Helpers
    1. Standard Helpers
    2. Strongly Typed Helpers
    3. Templated Helpers
  4. Inline Helpers
  5. Custom Helpers
  6. Url helpers

Server-side Data Receiving Ways

  1. Action Parameters
  2. View Models/Objects
  3. FormCollection

Partial Views

  1. Static Partial View
  2. Dynamic Partial View

ViewModel & Validation

  1. Creating ViewModel
  2. Understanding ASP.NET MVC Validation
  3. Need of Server Side and Client Side Validation
  4. Validation with Data Annotation

Custom Validation

  1. Custom client side Validation
  2. Custom Server side validation

Data Passing Techniques

  1. ViewData
  2. ViewBag
  3. TempData
  4. Session
  5. Query String
  6. Cookies

Assessment #1

  1. Mock-up test
  2. Assignment

LINQ

  1. Understanding LINQ
  2. Flavors of LINQ
  3. Advantagesof LINQ
  4. Query Based Syntax and Method Based Syntax
  5. Deferred Execution vs. Immediate Execution
  6. Var Type vs. Generics
  7. Anonymous Type
  8. SQL Joins with LINQ
  9. Deferred/Lazy Loading vs. Eager Loading

LINQPad

  1. What is LINQPad
  2. Configuring LINQPad
  3. Querying SQL Server database using LINQPad
  4. Querying DAL layer DLL using LINQPad

Entity Framework

  1. What is ORM
  2. ORMs used with .NET
  3. Understanding Entity Framework
  4. Advantages of Entity Framework

Data Modeling Approaches

  1. Entity Framework Data Modelling Approaches
  2. Choosing DB First, Model First or Code First

Code First Modeling

  1. Defining Mapping using Data Annotation
  2. Implementing CRUD Operations
  3. Defining Mapping using Fluent API

Database Migration, DB Procedures and Functions

  1. Entity Framework Code First Migrations
  2. Updating Database when the Model Changes
  3. Calling Stored Procedures and functions
  4. Code First with existing Database

Database First Modeling

  1. Creating Model from Database
  2. CRUD Operations
  3. Updating Model when the Database Changes
  4. Changing and Updating Mapping
  5. Calling Stored Procedures

Model First Modeling

  1. Creating Model
  2. Creating Database from Model

Repository Design Pattern and Unit of Work Design Patterns

  1. Understanding Repository and UOW Design Pattern
  2. Need of Repository Design Pattern
  3. Need to Unit of Work Design Pattern
  4. Implementing Repository and UOW Design Pattern

Dependency Injection

  1. Understanding Dependency Injection
  2. Need of Dependency Injection
  3. Implementing DI

Assessment #2

  1. Mock-up test
  2. Assignment

Introduction to Angular2 & Angular4

  1. Introduction to Angular
  2. Advantagesof Angular
  3. Angular1 vs. Angular2 vs. Angular4
  4. Browsers Support

Get Started with Angular2 & Angular4

  1. Setting up an Angular App
  2. Running an Angular App
  3. Understanding Angularfolder structure
  4. Angular Initialization Process

Angular Building Blocks: Components, Modules, Decorators

  1. Understanding Component
  2. Creating a Component
  3. Understanding Modules
  4. Understanding Decorators

Databinding

  1. Understanding Data Binding
  2. Attribute Binding
  3. Two-way Data Binding
  4. Event Binding etc.

Routing

  1. Understanding Routing
  2. Defining Routes
  3. Routing Building Blocks – Routes, Router Outlet and Router Link

Directives

  1. Introduction to Directives
  2. Built in Directives - ngIf, ngFor, ngSwitch etc.
  3. Creating Custom Directives

Angular Forms and Controls

  1. Introduction to Angular Forms
  2. Creating Angular Form
  3. Angular form input controls
  4. Angular form validation
  5. Angular form and controls properties

Services

  1. Introduction to Services
  2. Creating Services
  3. Data sharing using Services

Assessment #3

  1. Mock-up test
  2. Assignment

ASP.NET Web API

  1. Introduction to SOA
  2. Introduction to REST
  3. REST Principles
  4. Understanding ASP.NET Web API
  5. Choosing between WCF and WebAPI

ASP.NET Web API Controller & Actions

  1. Understanding Controller & Actions
  2. Creating Controller
  3. Creating Actions

Database Operations and Postman

  1. CRUD Operations using Web API
  2. Using Postman for testing Web API
  3. Consuming Web API using ASP.NET MVC

Angular SPA

  1. Setting Up Angular App using Visual Studio
  2. Building and Running Angular using Visual Studio
  3. Consuming Web API using Angular

Discussing Project Architecture

  1. Understanding Application layers
  2. Discussing Application Entities Properties
  3. Discussing Relationship among Application Entities

Developing Project

  1. Designing Application Architecture
  2. Developing DAL layer using Entity Framework Code First

Implementing Design Pattern

  1. Developing BAL layer
  2. Repository Design Pattern
  3. User Login Process
  4. Dependency Injection

Module Development

  1. Creating Admin Module using Area
  2. Creating User Module using Area

Forms Authentication

  1. Understanding Forms Authentication
  2. Customizing principal
  3. Implementing custom Forms Authentication

ASP.NET MVC Pipeline and Filters

  1. ASP.NET MVC Pipeline
  2. ASP.NET MVC Filters
  3. Extending ASP.NET MVC Filters
  4. Configuring ASP.NET MVC Filters

Assessment #4

  1. Mock-up test
  2. Assignment

Securing ASP.NET MVC App

  1. Implementing Security using Custom Authentication Filter
  2. Implementing Authorization using Custom Authorization Filter
  3. Passing Logged in User Info Across the App

Category and Product Listing

  1. Category CRUD Operations
  2. Product CRUD Operations

Bundling & Minification

  1. Understanding Bundling & Minification
  2. Minimize number of static files requests

Web API and Angular

  1. Developing Web API for shopping Cart
  2. Setting Up Angular with ASP.NET MVC
  3. Developing Shopping Site Store using Angular

Shopping Cart

  1. Creating Shopping Cart
  2. Adding Products to Shopping Cart
  3. Removing Products from Shopping Cart

Payment Gateway

  1. Understanding Payment Gateway Process
  2. Integrating Payment Gateway
  3. Sending/Receiving data to and from Payment Gateway
  4. Placing order

Error Logging

  1. Understanding ELMAH
  2. Configuring ELMAH
  3. Saving errors into database

Securing ASP.NET Web API

  1. Understanding Token based Security
  2. Implementing Token based Security
  3. Customizing principal
  4. Implementing Authorization

Deployment

  1. Deployment on IIS
Self-Paced Learning

  •  Learn to build industry relevant projects
  •  Access to interactive Learning Platform
  •  Measure Progress through Assessments
  •  Access to support forum
  •  Learn Anytime, Anywhere, on Any Device
  •  1 Yr. of access to pre-recorded sessions videos
  •  Certificate of Completion
6,000/100

Instructor Led Training

  •  Interactive instructor-led live sessions
  •  Live Q&A sessions with mentor
  •  Learn to build industry relevant projects
  •  Access to interactive Learning Platform
  •  Measure Progress through Assessments
  •  Access to support forum
  •  Learn Anytime, Anywhere, on Any Device
  •  1 Yr. of access to pre-recorded & live sessions videos
  •  Certificate of Completion
18,500/310

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.