Cargando…

Code generation with Roslyn /

Learn how Roslyn's new code generation capability will let you write software that is more concise, runs faster, and is easier to maintain. You will learn from real-world business applications to create better software by letting the computer write its own code based on your business logic alre...

Descripción completa

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

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn974489151
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 170303s2017 xxua o 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d GW5XE  |d N$T  |d IDEBK  |d EBLCP  |d YDX  |d OCLCF  |d UMI  |d STF  |d TOH  |d IOG  |d COO  |d AZU  |d UPM  |d ESU  |d JBG  |d IAD  |d ICW  |d ICN  |d OTZ  |d K6U  |d UAB  |d OCLCQ  |d LIV  |d OCLCQ  |d MERUC  |d VT2  |d IDB  |d U3W  |d TEFOD  |d D6H  |d CAUOI  |d VVB  |d CEF  |d KSU  |d DEBBG  |d UWW  |d AU@  |d WYU  |d UKMGB  |d AUD  |d LEAUB  |d MERER  |d UKAHL  |d LQU  |d CNCEN  |d G3B  |d ERF  |d UKBTH  |d UHL  |d OCLCQ  |d SRU  |d OCLCQ  |d BRF  |d OCLCO  |d OCLCQ 
015 |a GBB8M4438  |2 bnb 
016 7 |a 019139921  |2 Uk 
019 |a 974688917  |a 974751770  |a 974958457  |a 975020914  |a 975080605  |a 975377831  |a 980303850  |a 984860356  |a 999412984  |a 1005777299  |a 1008950486  |a 1011787540  |a 1048173610  |a 1066476883  |a 1086554251  |a 1103275865  |a 1105187313 
020 |a 9781484222119  |q (electronic bk.) 
020 |a 1484222113  |q (electronic bk.) 
020 |z 9781484222102  |q (print) 
020 |z 1484222105 
024 7 |a 10.1007/978-1-4842-2211-9  |2 doi 
024 8 |a 10.1007/978-1-4842-2 
029 1 |a AU@  |b 000059804041 
029 1 |a AU@  |b 000067105375 
029 1 |a CHNEW  |b 000946831 
029 1 |a CHVBK  |b 480265364 
029 1 |a GBVCP  |b 100485997X 
029 1 |a UKMGB  |b 019139921 
029 1 |a AU@  |b 000068980181 
035 |a (OCoLC)974489151  |z (OCoLC)974688917  |z (OCoLC)974751770  |z (OCoLC)974958457  |z (OCoLC)975020914  |z (OCoLC)975080605  |z (OCoLC)975377831  |z (OCoLC)980303850  |z (OCoLC)984860356  |z (OCoLC)999412984  |z (OCoLC)1005777299  |z (OCoLC)1008950486  |z (OCoLC)1011787540  |z (OCoLC)1048173610  |z (OCoLC)1066476883  |z (OCoLC)1086554251  |z (OCoLC)1103275865  |z (OCoLC)1105187313 
037 |a CL0500000843  |b Safari Books Online 
037 |a 1DB499AA-CBD2-4934-8AF3-6FAF7AAA522A  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.76.G46 
072 7 |a COM  |x 077000  |2 bisacsh 
082 0 4 |a 005.4/5  |2 23 
049 |a UAMI 
100 1 |a Harrison, Nick,  |e author. 
245 1 0 |a Code generation with Roslyn /  |c Nick Harrison. 
264 1 |a [United States] :  |b Apress,  |c 2017. 
264 2 |a New York, NY :  |b Distributed to the Book trade worldwide by Springer 
264 4 |c ©2017 
300 |a 1 online resource :  |b illustrations 
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  |b PDF  |2 rda 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (SpringerLink, viewed March 10, 2017). 
505 0 |a At a Glance; Contents; About the Author; About the Technical Reviewer; Acknowledgments; Chapter 1: Introduction; The Problem with Business Logic; Develop/Test Deploy Takes Time; Lookup Tables Are Easier to Modify, Verify, and Deploy; Lookup Tables Can Be Slow; Having Your Cake and Eating It Too; What Is Not Covered; Summary; Chapter 2: Putting Business Logic in Tables; A Catalog of Business Logic Tables; Simple Lookup Table; Lookup Tables with Multiple Input Parameters (Decision Tables); State-Specific Business Logic; Shipping Charges; Interactive Questionnaire. 
505 8 |a Compound Decision TableExpression Decision Table; Summary; Chapter 3: Pulling Table Driven Logic Into Code; Overview; Treating Lookup Tables as Enums; Lookup Data; Code; Table-Driven Hello World; Data; Code; Automated Underwriting; Data Model; Data; Underwriting Rule; Loan Code Type; Loan Code; Underwriting Rule Detail; Code; Summary; Chapter 4: An Introduction to Roslyn; The Roslyn Pipeline; How Code Generation Fits In; Getting Started with Roslyn; Syntax API; Symbol API; Binding and Analysis API; Emit API; Generating Code; Summary; Chapter 5: Generating Code; Creating Enums; Hello World. 
505 8 |a Automated UnderwritingSummary; Chapter 6: Deploying Generated Code; Setting Up the Sample Solution; The Basic Flow; Loading the EmptyProject; Safely Add a New Document; Specifying Compilation Options; Reviewing the Diagnostic Messages; Emitting an Assembly; Summary; Chapter 7: Reflecting on Generated Code; Loading the Assembly; Monitoring for Changes; Discovering Types; Discovering Methods; Calling Methods; Interpreting the Results; Summary; Chapter 8: Best Practices; Defining Requirements; Always Plan on Change; Most Business Rules Are Date-Sensitive; Structuring Logic. 
505 8 |a Separate Business Logic Tables from Business Entity TablesIntegrate Lookup Tables into the Entity Data Model; Avoid One True Lookup Tables (OTLT) in the Entity Data Model; An OTLT Can Be Used to Simplify Expression-Based Decision Tables; Types of Logic Tables; Use Dates; Add Comment Columns to Logic Tables; Writing Code from Structured Logic; Hand-Write Sample Code Before Generating the Code; Define an Input Interface; Not All Logic Tables Should Be Converted to Code; Generate Enums from Lookup Tables; Incorporate Comments; Fail Early; Using Roslyn; Roslyn Is the Compiler. 
505 8 |a Roslyn Is Better for Code GenerationParse Sample Code; Roslyn Is Immutable; Generating Code with Roslyn; Use Simple Objects to Host Metadata; Invert Business Logic; Reduce Complexity; Reflective Best Practices; Don't Lock the Assembly; Reload the Assembly as Needed; Prefer GetTypes () to GetType (); Track Results; Index. 
520 |a Learn how Roslyn's new code generation capability will let you write software that is more concise, runs faster, and is easier to maintain. You will learn from real-world business applications to create better software by letting the computer write its own code based on your business logic already defined in lookup tables. Code Generation with Rosyln is the first book to cover this new capability. You will learn how these techniques can be used to simplify systems integration so that if one system already defines business logic through lookup tables, you can integrate a new system and share business logic by allowing the new system to write its own business logic based on already existing table-based business logic. One of the many benefits you will discover is that Roslyn uses an innovative approach to compiler design, opening up the inner workings of the compiler process. You will learn how to see the syntax tree that Roslyn is building as it compiles your code. Additionally, you will learn to feed it your own syntax tree that you create on the fly. What You Will Learn: • Structure logic to be stored in database design • Build complex conditional logic based on lookup data in the database • Compile code that you generate programmatically • Discover generated code and run it dynamically to implement new business logic • Debug problems in generated code • Deploy and access generated code. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Code generators. 
650 6 |a Générateurs de codes. 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a Microsoft programming.  |2 bicssc 
650 7 |a COMPUTERS  |x Mathematical & Statistical Software.  |2 bisacsh 
650 7 |a Code generators.  |2 fast  |0 (OCoLC)fst00866206 
776 0 8 |i Print version:  |a Harrison, Nick.  |t Code generation with Roslyn.  |d [United States] : Apress, 2017  |z 1484222105  |z 9781484222102  |w (OCoLC)959950140 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484222119/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH33062845 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL4815406 
938 |a EBSCOhost  |b EBSC  |n 1478774 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis37730545 
938 |a YBP Library Services  |b YANK  |n 13528646 
994 |a 92  |b IZTAP