Cantitate/Preț
Produs

Dependency Injection in .Net: Developing RESTful Web APIs in Java

Autor Mark Seemann
en Limba Engleză Paperback – oct 2011
DESCRIPTION
Dependency Injection (DI) is a software design technique behind the
wildly popular Spring tool in Java. .NET developers are only now
discovering how DI can improve the quality and maintainability of
their C# code.
Dependency Injection in .NET is a comprehensive guide that
introduces DI to .NET developers. It covers core concepts and patterns,
and introduces important DI frameworks, such as StructureMap,
Windsor and Spring.NET. For each framework, it presents examples of
its particular usage, as well as examines how the framework relates to
the common patterns.
KEY POINTS
F. First and only book on DI in .NET
F. Provides both patterns and practical examples
F. Presents major DI frameworks for .NET
F. Very strong response in Manning Early Access Program
Citește tot Restrânge

Preț: 24261 lei

Preț vechi: 25550 lei
-5%

Puncte Express: 364

Preț estimativ în valută:
4648 5046$ 3986£

Carte indisponibilă temporar

Doresc să fiu notificat când acest titlu va fi disponibil:

Preluare comenzi: 021 569.72.76

Specificații

ISBN-13: 9781935182504
ISBN-10: 1935182501
Pagini: 552
Dimensiuni: 186 x 233 x 33 mm
Greutate: 0.96 kg
Editura: Manning Publications

Notă biografică

Mark Seemann is a software architect living in Copenhagen. Previously a developer and architect at Microsoft, Mark is now an independent consultant.


Descriere

Summary
Dependency Injection in .NET presents core DI patterns in plain C#, so you'll fully understand how DI works, covers integration with standard Microsoft technologies like ASP.NET MVC, and teaches you to use DI frameworks like Structure Map, Castle Windsor, and Unity.
About the TechnologyDependency Injection is a great way to reduce tight coupling between software components. Instead of hard-coding dependencies, such as specifying a database driver, you inject a list of services that a component may need. The services are then connected by a third party. This technique enables you to better manage future changes and other complexity in your software.
About this BookDependency Injection in .NET introduces DI and provides a practical guide for applying it in .NET applications. The book presents the core patterns in plain C#, so you'll fully understand how DI works. Then you'll learn to integrate DI with standard Microsoft technologies like ASP.NET MVC, and to use DI frameworks like StructureMap, Castle Windsor, and Unity. By the end of the book, you'll be comfortable applying this powerful technique in your everyday .NET development.
This book is written for C# developers. No previous experience with DI or DI frameworks is required.
Purchase of the print book comes with an offer of a free PDF, ePub, and Kindle eBook from Manning. Also available is all code from the book.
What's Inside

  • Many C#-based examples
  • A catalog of DI patterns and anti-patterns
  • Using both Microsoft and open source DI frameworks

Tabel of Contents

  1. PART 1 PUTTING DEPENDENCY INJECTION ON THE MAP

  2. A Dependency Injection tasting menu
  3. A comprehensive example
  4. DI Containers

    PART 2 DI CATALOG

  5. DI patterns
  6. DI anti-patterns
  7. DI refactorings

    PART 3 DIY DI

  8. Object Composition
  9. Object Lifetime
  10. Interception

    PART 4 DI CONTAINERS

  11. Castle Windsor
  12. StructureMap
  13. Spring.NET
  14. Autofac
  15. Unity
  16. MEF