Azure Services and LLBLGen

Posts   
 
    
Wade
User
Posts: 76
Joined: 15-Jun-2004
# Posted on: 25-Sep-2012 06:19:15   

I have been with llblgen since its beginning and I really love the product. With all the changes going on with Windows 8, Visual Studio 2012, EF 5, and Azure, I was wondering if anyone is working with LLBLGen right now to create WebAPIs connecting to Azure services like Azure Sql DB, Azure Blob Storage, Azure Tables, and Azure Queues?

I am also wondering if anyone has tried working much with Azure? I have some new product ideas for the Windows 8 store and trying to figure out what is the best approach for REST api into the Azure services.

I really appreciate any and all suggestions.

Thanks, Wade Beasley Shelbyville, KY

daelmo avatar
daelmo
Support Team
Posts: 8245
Joined: 28-Nov-2005
# Posted on: 25-Sep-2012 08:05:01   

Hi Wade,

I'm working right now for a client who has everything on WAzure. AzureStorage for everything like images, pdfs, etc, AzureTables to store emails, SQLAzure for all the application relational data. We use the API assemblies, not the REST API directly, but it's likely the same concept.

Working with LLBLGen+SQLAzure is very easy: you make your project against a local SQLServer DB, then for production you just change your connection string. If you are going to generate EF, then it's a matter of EF, but I'm sure it will be no problem with that.

Probably you will use AzureStorage+SQLAzure to store reference to your files in your tables. You just have to store the AzureStorage file uri, then use the (dll/rest) api to download the bytes. So basically is like a normal app, it's just that the stuff is somewhere else.

David Elizondo | LLBLGen Support Team