0
votes

I've been working through this tutorial to get started with cloud services in Azure.

The project has one web role and two worker roles, and they share similar code for accessing the storage tables. Could I have a common data access layer shared between them? Would I create a separate role for this? I'm not really sure where to start.

1

1 Answers

0
votes

Yes you can, but is that what you want? Sharing the same access layer, all services will access the same database.

You just need to add a Nuget Package Windows Azure Storage and access your storage account / blobs, tables, queues...