Pro ASP.NET Core MVC 2 /

Saved in:
Bibliographic Details
Author / Creator:Freeman, Adam, 1972- author.
Edition:Seventh edition.
Imprint:[London, U.K.] : Apress, [2017]
©2017
Description:1 online resource
Language:English
Subject:
Format: E-Resource Book
URL for this record:http://pi.lib.uchicago.edu/1001/cat/bib/11384671
Hidden Bibliographic Details
ISBN:9781484231500
1484231503
9781484231494
Notes:Includes index.
Vendor-supplied metadata.
Summary:Now in its 7th edition, the best selling book on MVC is updated for ASP.NET Core MVC 2. It contains detailed explanations of the Core MVC functionality which enables developers to produce leaner, cloud optimized and mobile-ready applications for the .NET platform. This book puts ASP.NET Core MVC into context and dives deep into the tools and techniques required to build modern, cloud optimized extensible web applications. All the new MVC features are described in detail and the author explains how best to apply them to both new and existing projects. The ASP.NET Core MVC Framework is the latest evolution of Microsoft?s ASP.NET web platform, built on a completely new foundation. It represents a fundamental change to how Microsoft constructs and deploys web frameworks and is free of the legacy of earlier technologies such as Web Forms. ASP.NET Core MVC provides a "host agnostic" framework and a high-productivity programming model that promotes cleaner code architecture, test-driven development, and powerful extensibility. Best-selling author Adam Freeman has thoroughly revised this market-leading book and explains how to get the most from ASP.NET Core MVC. He starts with the nuts-and-bolts and shows you everything through to advanced features, going in-depth to give you the knowledge you need. The book includes a fully worked case study of a functioning web application that readers can use as a template for their own projects. What's New in This Edition Fully updated for Visual Studio 2017, C# 7 and .NET Core 2 Coverage of new features such as view filters Wider platform and tooling coverage than ever before, with more on Visual Studio Code and working with .NET Core on non-Windows platforms Docker-based application deployment What You Will Learn Gain a solid architectural understanding of ASP.NET Core MVC Explore the entire ASP.NET MVC Framework as a cohesive whole See how MVC and test-driven development work in action Learn what's new in ASP.NET Core MVC 2 and how best to apply these new features to your own work See how to create RESTful web services and Single Page Applications Build on your existing knowledge of previous MVC releases to get up and running with the new programming model quickly and effectively Who This Book Is For This book is for web developers with a basic knowledge of ASP.NET and C# who want to incorporate the latest improvements and functionality in the ASP.NET Core MVC 2 Framework.

MARC

LEADER 00000cam a2200000Ii 4500
001 11384671
005 20210625184420.7
006 m o d
007 cr cnu|||unuuu
008 171026t20172017enka o 001 0 eng d
020 |a 9781484231500  |q (electronic bk.) 
020 |a 1484231503  |q (electronic bk.) 
020 |z 9781484231494 
035 |a (OCoLC)1007700442 
035 9 |a (OCLCCM-CC)1007700442 
037 |a F1801305-1950-4C4D-9D14-70F693079129  |b OverDrive, Inc.  |n http://www.overdrive.com 
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d EBLCP  |d GW5XE  |d UAB  |d MERUC  |d OCLCF  |d IOG  |d OCLCA  |d IDB  |d COO  |d MERER  |d OCL  |d SNK  |d OCLCQ  |d U3W  |d CAUOI  |d K6U  |d OCLCQ  |d KSU  |d INT  |d OCLCQ  |d OCLCO  |d ESU  |d WYU  |d LVT  |d OCLCQ  |d OCLCO  |d UKAHL  |d TEFOD  |d C6I  |d OCLCQ  |d UBY  |d OCLCQ 
049 |a MAIN 
050 4 |a QA76.625 
072 7 |a COM  |x 000000  |2 bisacsh 
100 1 |a Freeman, Adam,  |d 1972-  |e author.  |0 http://id.loc.gov/authorities/names/n96061687 
245 1 0 |a Pro ASP.NET Core MVC 2 /  |c Adam Freeman. 
250 |a Seventh edition. 
264 1 |a [London, U.K.] :  |b Apress,  |c [2017] 
264 4 |c ©2017 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
500 |a Includes index. 
588 0 |a Vendor-supplied metadata. 
505 0 |a Contents at a Glance -- Contents -- About the Author -- About the Technical Reviewer -- Part I: Introducing ASP.NET Core MVC 2 -- Chapter 1: ASP .NET Core MVC in Context -- Understanding the History of ASP.NET Core MVC -- ASP.NET Web Forms -- What Was Wrong with ASP.NET Web Forms? -- The Original MVC Framework -- What Was Wrong with the Original MVC Framework? -- Understanding ASP.NET Core -- Whatâ#x80;#x99;s New in ASP.NET Core MVC 2 -- Key Benefits of ASP.NET Core MVC -- MVC Architecture -- Extensibility -- Tight Control over HTML and HTTP -- Testability 
505 8 |a Powerful Routing SystemModern API -- Cross-Platform -- ASP.NET Core MVC Is Open Source -- What Do I Need to Know? -- What Is the Structure of This Book? -- Part 1: Introducing ASP.NET Core MVC -- Part 2: ASP.NET Core MVC in Detail -- Where Can You Get the Example Code? -- Where Can You Get Corrections for This Book? -- Contacting the Author -- Summary -- Chapter 2: Your First MVC Application -- Installing Visual Studio -- Installing the .NET Core 2.0 SDK -- Creating a New ASP.NET Core MVC Project -- Adding the Controller -- Understanding Routes 
505 8 |a Rendering Web PagesCreating and Rendering a View -- Adding Dynamic Output -- Creating a Simple Data-Entry Application -- Setting the Scene -- Designing a Data Model -- Creating a Second Action and a Strongly Typed View -- Linking Action Methods -- Building the Form -- Receiving Form Data -- Using Model Binding -- Storing Responses -- Displaying the Responses -- Adding Validation -- Highlighting Invalid Fields -- Styling the Content -- Styling the Welcome View -- Styling the RsvpForm View -- Styling the Thanks View -- Styling the List View 
505 8 |a SummaryChapter 3: The MVC Pattern, Projects, and Conventions -- The History of MVC -- Understanding the MVC Pattern -- Understanding Models -- Understanding Controllers -- Understanding Views -- The ASP.NET Implementation of MVC -- Comparing MVC to Other Patterns -- Understanding the Smart UI Pattern -- Understanding the Model-View Architecture -- Understanding Classic Three-Tier Architecture -- Understanding Variations on MVC -- Understanding the Model-View-Presenter Pattern -- Understanding the Model-View-View Model Pattern 
505 8 |a Understanding ASP.NET Core MVC ProjectsCreating the Project -- Understanding MVC Conventions -- Following Conventions for Controller Classes -- Following Conventions for Views -- Following Conventions for Layouts -- Summary -- Chapter 4: Essential C# Features -- Preparing the Example Project -- Enabling ASP.NET Core MVC -- Creating the MVC Application Components -- Creating the Model -- Creating the Controller and View -- Using the Null Conditional Operator -- Chaining the Null Conditional Operator -- Combining the Conditional and Coalescing Operators 
520 |a Now in its 7th edition, the best selling book on MVC is updated for ASP.NET Core MVC 2. It contains detailed explanations of the Core MVC functionality which enables developers to produce leaner, cloud optimized and mobile-ready applications for the .NET platform. This book puts ASP.NET Core MVC into context and dives deep into the tools and techniques required to build modern, cloud optimized extensible web applications. All the new MVC features are described in detail and the author explains how best to apply them to both new and existing projects. The ASP.NET Core MVC Framework is the latest evolution of Microsoft?s ASP.NET web platform, built on a completely new foundation. It represents a fundamental change to how Microsoft constructs and deploys web frameworks and is free of the legacy of earlier technologies such as Web Forms. ASP.NET Core MVC provides a "host agnostic" framework and a high-productivity programming model that promotes cleaner code architecture, test-driven development, and powerful extensibility. Best-selling author Adam Freeman has thoroughly revised this market-leading book and explains how to get the most from ASP.NET Core MVC. He starts with the nuts-and-bolts and shows you everything through to advanced features, going in-depth to give you the knowledge you need. The book includes a fully worked case study of a functioning web application that readers can use as a template for their own projects. What's New in This Edition Fully updated for Visual Studio 2017, C# 7 and .NET Core 2 Coverage of new features such as view filters Wider platform and tooling coverage than ever before, with more on Visual Studio Code and working with .NET Core on non-Windows platforms Docker-based application deployment What You Will Learn Gain a solid architectural understanding of ASP.NET Core MVC Explore the entire ASP.NET MVC Framework as a cohesive whole See how MVC and test-driven development work in action Learn what's new in ASP.NET Core MVC 2 and how best to apply these new features to your own work See how to create RESTful web services and Single Page Applications Build on your existing knowledge of previous MVC releases to get up and running with the new programming model quickly and effectively Who This Book Is For This book is for web developers with a basic knowledge of ASP.NET and C# who want to incorporate the latest improvements and functionality in the ASP.NET Core MVC 2 Framework. 
630 0 0 |a Microsoft .NET Framework. 
630 0 7 |a Microsoft .NET Framework.  |2 fast  |0 (OCoLC)fst01020083 
650 0 |a Web sites  |x Authoring programs.  |0 http://id.loc.gov/authorities/subjects/sh98000036 
650 7 |a COMPUTERS  |x General.  |2 bisacsh 
650 7 |a Web sites  |x Authoring programs.  |2 fast  |0 (OCoLC)fst01173249 
655 4 |a Electronic books. 
903 |a HeVa 
929 |a oclccm 
999 f f |i 4e3d93f2-1d98-5466-aeff-d31316b5d40f  |s 060b6371-d77b-5c5d-9e15-e461f906b9e5 
928 |t Library of Congress classification  |a QA76.625  |l Online  |c UC-FullText  |u https://link.springer.com/10.1007/978-1-4842-3150-0  |z Springer Nature  |g ebooks  |i 12549095