Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use Entity Framework with Windows Azure development storage service?

EDIT: Is it possible to use Entity Framework with Windows Azure development storage service? and how?

Thanks.

like image 228
Jevgenij Nekrasov Avatar asked Nov 11 '10 15:11

Jevgenij Nekrasov


2 Answers

No, it wouldn't be possible or practical. Azure Storage (different from SQL Azure) doesn't support joining and may not respond well to ad-hoc queries. But you don't need it. Azure storage already supports LINQ and object mapping.

like image 140
Craig Stuntz Avatar answered Nov 15 '22 07:11

Craig Stuntz


Craig's answer is right for Windows Azure storage. For SQL Azure, there's no such thing as development storage, but you can use EF against SQL Azure in the cloud, and you can use EF against SQL Server locally.

like image 44
user94559 Avatar answered Nov 15 '22 07:11

user94559