Building your first connector
As discussed in the beginning of this chapter, a connector is basically an API app that focuses on connectivity and gets data in and out of Logic Apps. In this section, we will try to build an Azure Storage Table connector. At the time of writing this chapter, Azure Storage Table connector was not available in the marketplace.
Azure Storage Table connector
We are building this connector to pull author or chapter details for this book from a Book Entity in the storage table.
First of all, we will create the API App project for storage table connector. Please follow the steps described to create an API App in Chapter 3, Getting Started with API Apps.
API App project will have a BookEntity
model and a controller BookController
as shown here:
BookController will have an operation GetBookEntity
. This operation primarily takes the PartitionKey
and the RowKey
to fetch the record from the storage table. If you see the model, the author or the chapter is the partition...