
- English
- ePUB (mobile friendly)
- Available on iOS & Android
ASP.NET Core MVC 2.0 Cookbook
About this book
Learn to implement ASP.NET Core features to build effective software that can be scaled and maintained easilyAbout This Book⢠Practical solutions to recurring issues in the web development world⢠Recipes on the latest features of ASP.Net Core 2.0⢠Coverage of Bootstrap, Angular, and JavaScript lets you supercharge your frontendWho This Book Is ForThis book is written for the ASP.NET developer who wants to deliver professional-standard software, quickly and efficiently. It's filled with hands-on recipes, practical advice, and guidance to help developers with every aspect of the ASP.NET development cycle. Whether you've just started out or are a seasoned pro, the Asp.Net Core 2.0 Cookbook is written for you.What You Will Learn⢠Build ASP.Net Core 2.0 applications using HTTP services with WebApi⢠Learn to unit-test, load test, and perform test applications using client-side and server-side frameworks⢠Debug, monitor and troubleshoot ASP.Net Core 2.0 applications using popular tools⢠Reuse components with NuGet and create modular components with middleware⢠Create applications using client-side technologies such as HTML5, JavaScript, jQuery, and Angular⢠Build responsive and dynamic UIs for your MVC apps using Bootstrap⢠Leverage tools like Karma, Jasmine, QUnit, xUnit, Selenium, Microsoft Fakes, and Visual Studio 2017 EnterpriseIn DetailThe ASP.NET Core 2.0 Framework has been designed to meet all the needs of today's web developers. It provides better control, support for test-driven development, and cleaner code. Moreover, it's lightweight and allows you to run apps on Windows, OSX and Linux, making it the most popular web framework with modern day developers.This book takes a unique approach to web development, using real-world examples to guide you through problems with ASP.NET Core 2.0 web applications. It covers Visual Studio 2017- and ASP.NET Core 2.0-specifc changes and provides general MVC development recipes. It explores setting up.NET Core, Visual Studio 2017, Node.js modules, and NuGet. Next, it shows you how to work with Inversion of Control data pattern and caching. We explore everyday ASP.NET Core MVC 2.0 patterns and go beyond it into troubleshooting. Finally, we lead you through migrating, hosting, and deploying your code.By the end of the book, you'll not only have explored every aspect of ASP.NET Core MVC 2.0, you'll also have a reference you can keep coming back to whenever you need to get the job done.Style and approachAsp.Net Core 2.0 has been redesigned to meet the needs of today's web developers. Open-source, cross-platform, and fully integrated with the most powerful front-end frameworks, it still has all the benefits of ease and speed of development that have made it one of the most popular web frameworks in production today. Asp.Net Core 2.0 Development Cookbook takes a unique approach to web development. Based around the tasks that you will be using every day when making websites, it will guide you through all the common problems you'll face when developing web applications.
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
Accessing data with Micro ORMs, NoSQL, and Azure
- Accessing data with Dapper
- Accessing data with OrmLite
- Accessing data with MongoDb
- Accessing data with Azure storage tables
- Accessing data with storage Blobs
- Accessing data with SQL Azure
Introduction
Micro ORMs
NoSQL
Accessing data with Dapper
Getting ready
How to do it...
- First, we will create three folders: Controllers, Models, and Views.
- Next, we add the following NuGet packages to the dependencies to the project:
"Microsoft.AspNetCore.Server.IISIntegration",
"Microsoft.AspNetCore.Server.Kestrel",
"Microsoft.AspNetCore.Mvc",
"Microsoft.AspNetCore.Razor.Tools",
"Microsoft.Extensions.Configuration.EnvironmentVariables",
"Microsoft.Extensions.Configuration.Json",
"System.Data.Common",
"System.Data.SqlClient",
"Dapper"
- Next, let's create an appsettings.config file to add our database connection string and add the following code:
{
"ConnectionStrings": {
"CookBookConnection":
"Data Source=PC-HOME\\SQLEXPRESS;Initial Catalog=CookBook;Integrated Security=True;MultipleActive...Table of contents
- Title Page
- Copyright and Credits
- Packt Upsell
- Contributors
- Preface
- Cross-Platform with .NET Core
- Visual Studio 2017, C# 6, IDEs, and Roslyn
- Working with npm, Frontend Package Managers, and Task Runners
- Reusing Code with NuGet
- SOLID Principles, Inversion of Control, and Dependency Injection
- Data Access - EF7 with Repository, SQL Server, and Stored Procedures
- Accessing data with Micro ORMs, NoSQL, and Azure
- Cache and Session - Distributed, Server, and Client
- Routing
- ASP.NET Core MVC
- Web API
- Filters
- Views, Models, and ViewModels
- Razor and Views
- TagHelpers and ViewComponents
- OWIN and Middleware
- Security
- Frontend Development
- Deployment and Hosting
- Other Books You May Enjoy