Cargando…

The complete ASP.NET Core 3 API tutorial : hands-on building, testing, and deploying /

Use this ASP.NET Core API tutorial and straightforward step-by-step guide to build, test, and deploy an ASP.NET Core API to Azure. It will help you code confidently and efficiently, and provides just what you need for context. The book starts with detailing how to set up your development environment...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Jackson, Les
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [United States] : Apress, 2020.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_on1198558846
003 OCoLC
005 20231017213018.0
006 m o d
007 cr |n|||||||||
008 201002s2020 xxu o 001 0 eng d
040 |a YDX  |b eng  |e pn  |c YDX  |d EBLCP  |d GW5XE  |d OCLCO  |d UKAHL  |d OCLCF  |d SFB  |d UMI  |d UKMGB  |d UPM  |d OCLCQ  |d OCLCO  |d COM  |d OCLCQ  |d OCLCO 
015 |a GBC0K0406  |2 bnb 
016 7 |a 019966580  |2 Uk 
019 |a 1202468420  |a 1202480793  |a 1224537805  |a 1225497783  |a 1264839409 
020 |a 9781484262559  |q (electronic bk.) 
020 |a 1484262557  |q (electronic bk.) 
020 |z 1484262549 
020 |z 9781484262542 
024 7 |a 10.1007/978-1-4842-6255-9  |2 doi 
029 1 |a AU@  |b 000068068709 
029 1 |a AU@  |b 000068808333 
029 1 |a AU@  |b 000068845985 
029 1 |a UKMGB  |b 019966580 
035 |a (OCoLC)1198558846  |z (OCoLC)1202468420  |z (OCoLC)1202480793  |z (OCoLC)1224537805  |z (OCoLC)1225497783  |z (OCoLC)1264839409 
037 |a CL0501000173  |b Safari Books Online 
050 4 |a QA76.76.A63 
072 7 |a UMP  |2 bicssc 
072 7 |a COM051380  |2 bisacsh 
072 7 |a UMP  |2 thema 
082 0 4 |a 006.7/6  |2 23 
049 |a UAMI 
100 1 |a Jackson, Les. 
245 1 4 |a The complete ASP.NET Core 3 API tutorial :  |b hands-on building, testing, and deploying /  |c Les Jackson. 
260 |a [United States] :  |b Apress,  |c 2020. 
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 
347 |a text file  |2 rdaft  |0 http://rdaregistry.info/termList/fileType/1002 
347 |b PDF 
505 0 |a Intro -- Table of Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Chapter 1: Introduction -- Why I Wrote This Book -- Apress Edition -- The Approach of This Book -- Where Can You Get the Code? -- Main Solution Repository (API and Unit Tests) -- Secure Daemon Client Repository -- Conventions Used in This Book -- Version of the .net Core Framework -- Contacting the Author -- Defects and Feature Improvements -- Chapter 2: Setting Up Your Development Environment -- Chapter Summary -- When Done, You Will -- The Three Amigos: Windows, Mac, and Linux 
505 8 |a Your Ingredients -- Links to the Software and Sites -- Install VS Code -- C# for Visual Studio Code -- Insert GUID -- Install .NET Core SDK -- Install GIT -- Name and Email -- Install Docker [Optional] -- What Is Docker? -- Docker Desktop vs. Docker CE -- Post-installation Check -- Docker Plugin for VS Code -- Install PostgreSQL -- Install DBeaver CE -- DBeaver vs. pgAdmin -- Install Postman -- Trust Local Host Development Certs -- Wrapping It Up -- Chapter 3: Overview of Our API -- Chapter Summary -- When Done, You Will -- What Is a REST API? -- Our API -- Payloads -- Five Minutes On JSON 
505 8 |a Anatomy of a Simple JSON Object -- A (Slightly) More Complex Example -- A Final Example -- Chapter 4: Scaffold Our API Solution -- Chapter Summary -- When Done, You Will -- Solution Overview -- Scaffold Our Solution Components -- Creating Solution and Project Associations -- Anatomy of An ASP.NET Core App -- The Program and Startup Classes -- The Program Class -- The Startup Class -- ConfigureServices -- Configure -- Chapter 5: The "C" in MVC -- Chapter Summary -- When Done, You Will -- Quick Word on My Dev Setup -- Start Coding! -- Call the Postman -- What Is MVC? -- Model-View-Controller 
505 8 |a Models, Data Transfer Objects, Repositories, and Data Access -- What's the Distinction? -- Why Decoupling Is Good? -- Bringing It Together -- Our Controller -- 1. Using Directives -- 2. Inherit from Controller Base -- 3. Set Up Routing -- 4. APIController Attribute -- 5. HttpGet Attribute -- 6. Our Controller Action -- Synchronous vs. Asynchronous? -- Source Control -- Git and GitHub -- What's the difference? -- Setting Up Your Local Git Repo -- gitignore file -- Track and Commit Your Files -- Set Up Your GitHub Repo -- Create a GitHub Repository -- So What Just Happened? 
505 8 |a Chapter 6: Our Model and Repository -- Chapter Summary -- When Done, You Will -- Our Model -- Data Annotations -- Our Repository -- What Is an Interface? -- What About Implementation? -- Our Mock Repository Implementation -- Dependency Injection -- Back to the Start (Up) -- Applying Dependency Injection -- Constructor Dependency Injection -- Update Our Controller -- Chapter 7: Persisting Our Data -- Chapter Summary -- When Done, You Will -- Architecture Progress Check -- PostgreSQL Database -- Using Docker -- Docker Command Prompt -- Connecting with DBeaver -- Connection Issues 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (SpringerLink, viewed November 18, 2020). 
520 |a Use this ASP.NET Core API tutorial and straightforward step-by-step guide to build, test, and deploy an ASP.NET Core API to Azure. It will help you code confidently and efficiently, and provides just what you need for context. The book starts with detailing how to set up your development environment, and then introduces a variety of tools and technologies to build, test, and deploy your API. It covers tools such as .NET Core SDK, (Version 3.1), Visual Studio Code, Git, xUnit, Docker, PostgreSQL, Postman, Azure DevOps, Azure, AutoMapper, and many more. Practical guidance is provided so you can achieve a tangible and valuable outcome, and you also are given a dose of theory on REST (Representational State Transfer), JSON, (JavaScript Object Notation), DTOs (Data Transfer Objects), and the MVC (Model View Controller) architectural pattern. What You Will Learn Build an ASP.NET Core API using C#, test it, and deploy it to Azure Understand concepts on Entity Framework Core Gain hard-earned secrets, shortcuts, and gotchas throughout the "build along" Get comfortable with ASP NET Core Environments Be introduced to unit testing, CI/CD pipelines, bearer authentication, and JSON Web Tokens (JWT) Who This Book Is For Developers using the Microsoft stack. Some basic understanding of .NET Core is assumed 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Microsoft .NET Framework. 
630 0 7 |a Microsoft .NET Framework  |2 fast 
650 0 |a Application program interfaces (Computer software) 
650 6 |a Interfaces de programmation d'applications. 
650 7 |a APIs (interfaces)  |2 aat 
650 7 |a Application program interfaces (Computer software)  |2 fast 
776 0 8 |i Print version:  |a Jackson, Les.  |t Complete ASP.NET Core 3 API tutorial.  |d [United States] : Apress, 2020  |z 1484262549  |z 9781484262542  |w (OCoLC)1164496939 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484262559/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH37890071 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL6357817 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL6357783 
938 |a YBP Library Services  |b YANK  |n 16986262 
994 |a 92  |b IZTAP