BozoJoe
BozoJoe

Reputation: 6462

Code generation for Azure Tables - ala ORM

I'd like to take several simple relational databases and switch them to use Azure Table Storage rather than simply drop them into SQLAzure. I always use ORM generated code to access my database (in this case LLBLgenpro). Is there any tooling that would review my relational database and generate ORM'ish code that works with Azure Table Storage for a persistance layer?

Upvotes: 1

Views: 862

Answers (1)

Igorek
Igorek

Reputation: 15860

There is not. You can use Entity-Framework EDMX and modify the t4 (tt) files to build you ATS-compatible objects. The effort may not be as beneficial however, since you cannot map any relationships or complex objects within your entities.

Upvotes: 1

Related Questions