Jevgenij Nekrasov
Jevgenij Nekrasov

Reputation: 2760

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.

Upvotes: 6

Views: 3243

Answers (2)

user94559
user94559

Reputation: 60143

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.

Upvotes: 4

Craig Stuntz
Craig Stuntz

Reputation: 126547

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.

Upvotes: 8

Related Questions