Book Image

Microsoft Azure Development Cookbook Second Edition

Book Image

Microsoft Azure Development Cookbook Second Edition

Overview of this book

Table of Contents (15 chapters)
Microsoft Azure Development Cookbook Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Facilitating NoSQL with client-side projection


The Azure Table service is a powerful storage service that enables an application to save and query entities (potentially schemaless) with an unbelievable scalability target and, of course, minimal governance. As we can save several types of aggregates of different topologies into the same table, the Storage library helps us deal with this, performing client-side projection to provide the application with the strong-typed model, instead of a collection of key-value items for each entity.

Tip

In this chapter, we wrote about two different ways to accomplish tasks with the Table service. We called them Method1 (for the WCF Data Services way) and Method2 (for the new officially supported OData method). In this recipe, we will only show how to proceed with Method2, as there are no valid counterparts to Method1.

In this brief recipe, we will see how to notice the SDK to manipulate returning entities before giving them back to the application.

Getting...