My Account Log in

2 options

Learning ASP.NET Core 2.0 : build modern web apps with ASP.NET Core 2.0, MVC, and EF Core 2 / Jason De Oliveira, Michel Bruchet.

Ebook Central College Complete Available online

View online

O'Reilly Online Learning: Academic/Public Library Edition Available online

View online
Format:
Book
Author/Creator:
De Oliveira, Jason, author.
Bruchet, Michel, author.
Language:
English
Subjects (All):
Microsoft .NET Framework.
Physical Description:
1 online resource (1 volume) : illustrations
Edition:
1st edition
Place of Publication:
Birmingham, England ; Mumbia, India : Packt Publishing, 2017.
System Details:
text file
Biography/History:
Bruchet Michel: Michel Bruchet works as an application architect for MEGA International, a software company in Paris (France), providing modeling tools for business transformation, enterprise architecture, and enterprise governance, risk, and compliance management. He has more than 20 years of experience as a senior architect, working on complex projects in IT and development departments. Michel has published several publications on the internet (SlideShare, LinkedIn, and more). He has worked for big companies in France, such as Sanofi, Pierre et Vacances Center Parcs, Banque de France, BPCE, and BNP. He is also the main driving force and mastermind behind the Ingenius solution, which provides efficient e-business solutions to customers around the world. Oliveira Jason De: Jason De Oliveira works as a CTO for MEGA International, a software company in Paris (France), providing modeling tools for business transformation, enterprise architecture, and enterprise governance, risk, and compliance management. He is an experienced manager and senior solutions architect, with high skills in software architecture and enterprise architecture. He loves sharing his knowledge and experience via his blog, speaking at conferences, writing technical books, writing articles in the technical press, giving software courses as MCT, and coaching co-workers in his company. He frequently collaborates with Microsoft and can often be found at the Microsoft Technology Center (MTC) in Paris. Microsoft has awarded him for more than 6 years with the Microsoft Most Valuable Professional (MVP C#/. NET) award for his numerous contributions to the Microsoft community. Microsoft seeks to recognize the best and brightest from technology communities around the world with the MVP Award. These exceptional and highly respected individuals come from more than 90 countries, serving their local online and offline communities and having an impact worldwide. Feel free to contact him via his blog if you need any technical assistance or want to talk about technical subjects. Jason has worked on the following books: .NET 4. 5 Expert Programming Cookbook (English) WCF 4. 5 Multi-tier Services Development with LINQ to Entities (English). NET 4. 5 Parallel Extensions Cookbook (English) WCF Multi-layer Services Development with Entity Framework (English) Visual Studio 2013: Concevoir, developper et gerer des projets Web, les gerer avec TFS 2013 (French)
Summary:
Learn how web applications can be built efficiently using ASP.NET Core 2.0 and related frameworks About This Book Get to grips with the new features and APIs introduced in ASP.NET Core 2.0 Leverage the MVC framework and Entity Framework Core 2 to build efficient applications Learn to deploy your web applications in new environments such as the cloud and Docker Who This Book Is For This book is for developers who would like to build modern web applications with ASP.NET Core 2.0. No prior knowledge of ASP.NET or .NET Core is required. However, basic programming knowledge is assumed. Additionally, previous Visual Studio experience will be helpful but is not required, since detailed instructions will guide through the samples of the book.This book can also help people, who work in infrastructure engineering and operations, to monitor and diagnose problems during the runtime of ASP.NET Core 2.0 web applications. What You Will Learn Set up your development environment using Visual Studio 2017 and Visual Studio Code Create a fully automated continuous delivery pipeline using Visual Studio Team Services Get to know the basic and advanced concepts of ASP.NET Core 2.0 with detailed examples Build an MVC web application and use Entity Framework Core 2 to access data Add Web APIs to your web applications using RPC, REST, and HATEOAS Authenticate and authorize users with built-in ASP.NET Core 2.0 features Use Azure, Amazon Web Services, and Docker to deploy and monitor your applications In Detail The ability to develop web applications that are highly efficient but also easy to maintain has become imperative to many businesses. ASP.NET Core 2.0 is an open source framework from Microsoft, which makes it easy to build cross-platform web applications that are modern and dynamic. This book will take you through all of the essential concepts in ASP.NET Core 2.0, so you can learn how to build powerful web applications. The book starts with a brief introduction to the ASP.NET Core framework and the improvements made in the latest release, ASP.NET Core 2.0. You will then build, test, and debug your first web application very quickly. Once you understand the basic structure of ASP.NET Core 2.0 web applications, you'll dive deeper into more complex concepts and scenarios. Moving on, we'll explain how to take advantage of widely used frameworks such as Model View Controller and Entity Framework Core 2 and you'll learn how to secure your applications. Finally, we'll s...
Contents:
Cover
Title Page
Copyright
Credits
Foreword
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Table of Contents
Preface
Chapter 1: What is ASP.NET Core 2.0?
ASP.NET Core 2.0 features
Cross-platform support
Microservice architecture
Working with Docker and containers
Performance and scalability
Side-by-side deployments
Technology restrictions
When to choose ASP.NET Core 2.0
Summary
Chapter 2: Setting Up the Environment
Visual Studio 2017 as a development environment
How to install Visual Studio 2017 Community Edition
First steps with Visual Studio 2017
Creating your first ASP.NET Core 2.0 application in Visual Studio 2017
Creating your first ASP.NET Core 2.0 application via the command line
Visual Studio Code as a development environment
How to install Visual Studio Code on Linux
Creating your first ASP.NET Core 2.0 application in Visual Studio Code
Creating your first ASP.NET Core 2.0 application in Linux
Chapter 3: Creating a Continuous Integration Pipeline in VSTS
Continuous integration, continuous deployment, and build and release pipelines
Using VSTS for continuous integration and continuous deployment
Creating a free VSTS subscription and your first VSTS project
Organizing your work via work items
Using Git as a version control system
Using feature branches
Merging changes and resolving conflicts
Creating a VSTS build pipeline
Creating a VSTS release pipeline
Chapter 4: Basic Concepts of ASP.NET Core 2.0 - Part 1
Building the Tic-Tac-Toe game
Conceiving and implementing your first Tic-Tac-Toe feature
Targeting different .NET Framework versions in the .csproj files of your projects
Using the Microsoft.AspNetCore.All metapackage
Working with the Program class.
Working with the Startup class
Preparing the basic project structure
Creating the Tic-Tac-Toe home page
Giving your web pages a more modern look by using Bower and layout pages
Creating the Tic-Tac-Toe user registration page
Using dependency injection for encouraging loose coupling within your applications
Creating the Tic-Tac-Toe user service
Working with middlewares
Working with static files
Using routing, URL redirection, and URL rewriting
Adding error handling to your applications
Chapter 5: Basic Concepts of ASP.NET Core 2.0 - Part 2
Client-side development using JavaScript
Optimizing your web applications and using bundling and minification
Working with WebSockets for real-time communication scenarios
Taking advantage of session and user cache management
Applying globalization and localization for multi-lingual user interfaces
Configuring your applications and services
Using logging
Implementing advanced dependency injection concepts
Building once and running on multiple environments
Chapter 6: Creating MVC Applications
Understanding the Model View Controller pattern
Models
Views
Controllers
Unit tests
Integration tests
Creating dedicated layouts for multiple devices
Using View Pages, Partial Views, View Components, and Tag Helpers
Using View Pages
Using Partial Views
Using View Components
Using Tag Helpers
Dividing web applications into multiple Areas
Applying advanced concepts
Using view engines
Providing better quality by creating unit tests and integration tests
Adding unit tests
Adding integration tests
Chapter 7: Creating Web API Applications
Applying Web API concepts and best practices
Building RPC-style Web APIs
Building REST-style Web APIs
Building HATEOAS-style Web APIs.
Summary
Chapter 8: Accessing Data using Entity Framework Core 2
Getting started with Entity Framework Core 2
Establishing a connection
Defining primary keys and foreign keys via Data Annotations
Using Entity Framework Core 2 Migrations
Creating, reading, updating, and deleting data
Chapter 9: Securing ASP.NET Core 2.0 Applications
Implementing authentication
Adding basic user forms authentication
Adding external provider authentication
Working with two-factor authentication
Adding forgotten password and password reset mechanisms
Implementing authorization
Chapter 10: Hosting and Deploying ASP.NET Core 2.0 Applications
Hosting applications
Deploying applications in Amazon Web Services
Deploying applications in AWS Elastic Beanstalk
Deploying applications in Microsoft Azure
Deploying applications in Microsoft Azure App Services
Deploying applications into Docker containers
Deploying applications into Docker containers using Docker for Windows and Docker Enterprise Edition
Publishing images to the Docker Hub
Chapter 11: Managing and Supervising ASP.NET Core 2.0 Applications
Logging in ASP.NET Core 2.0 applications
Logging in Microsoft Azure
Logging in Amazon Web Services
Monitoring ASP.NET Core 2.0 applications
Monitoring on-premises and in Docker
Monitoring in Microsoft Azure
Monitoring in Amazon Web Services
Index.
Notes:
Includes index.
Description based on online resource; title from PDF title page (EBC, viewed January 16, 2018).
ISBN:
9781788471848
1788471849
OCLC:
1020287970

The Penn Libraries is committed to describing library materials using current, accurate, and responsible language. If you discover outdated or inaccurate language, please fill out this feedback form to report it and suggest alternative language.

Find

Home Release notes

My Account

Shelf Request an item Bookmarks Fines and fees Settings

Guides

Using the Find catalog Using Articles+ Using your account