是否有适用于 Azure Blob 服务的实体框架数据提供程序?
我正在考虑使用 WCF 数据服务来实现公开存储在 Azure Blob 服务中的对象的服务。我想知道是否可以使用基于实体框架的数据模型。据我了解,我需要一个与实体框架兼容的数据提供程序,可以从 Blob 服务存储和检索数据。有这样的数据提供者吗?
I'm considering using WCF Data Services to implement a service exposing objects stored in the Azure Blob Service. I wonder if I could use a data model based on the Entity Framework. As I understand, I would need a data provider compatible with the Entity Framework that could store and retrieve data from the Blob service. Is there such a data provider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Azure 存储没有与实体框架兼容的数据提供程序。创建这样的数据提供程序可能不值得,因为这是一个非常复杂的项目,而且实体框架与 Azure 存储的概念模型不太匹配。实体框架专为关系数据库而设计,Azure 存储是基于 REST 的非关系存储。
至于在 Azure 存储上创建 WCF 数据服务层,可以使用 WCF 数据服务工具包 构建。
参考文献:
There isn't a data provider for Azure Storage that is compatible with Entity Framework. Creating such a data provider is probably not worthwhile because it's a very complex project and because Entity Framework is not a good match for Azure Storage's conceptual model. Entity Framework is designed for relational databases and Azure Storage is REST-based non-relational storage.
As for creating a WCF Data Services layer over Azure Storage, it could be built using WCF Data Services Toolkit.
References: