是否有适用于 Azure Blob 服务的实体框架数据提供程序?

发布于 2024-11-04 01:27:06 字数 130 浏览 0 评论 0原文

我正在考虑使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巾帼英雄 2024-11-11 01:27:06

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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文