哪些 Azure 存储功能可用于图片发布?

What Azure storage feature to use for image posts?

我正在尝试在 Xamarin.Forms 中创建一个可以存储照片及其描述和名称的应用程序。在此应用程序中,将有用户,图像加载将取决于您登录的帐户。我将图像存储在存储帐户中,并将其 url 存储在 Azure Easy Tables 中。 我想问一下,为了保存名称和描述,我应该使用 Azure Easy Tables 或其他 Azure 存储功能吗?如果我应该使用 Easy Tables,我如何才能只为特定用户加载特定数据?

感谢您的回答!!!

根据您的描述,我假设您正在使用 Azure 移动应用程序作为您的移动应用程序后端。您可以利用 Azure 移动应用服务器 SDK 来存储存储在 blob 存储/文件共享下的相关数据。

I want to ask that for saving names and descriptions I should use Azure Easy Tables or other Azure storage feature ? If I should use Easy Tables how can I load only specific data for specific user?

Azure 移动应用程序支持两种后端语言(C#,Node.js)。对于 C# 后端,您可以按照下面的教程来实现您的要求。

C# 后端和 Xamarin.Forms 项目

App Service Mobile sample todo list client app with images

Connect to Azure Storage in your Xamarin.Forms app

Easy Tables 由 Node.js 后端提供。对于 Node.js 后端,Azure 移动应用程序没有提供与 C# 后端类似的文件管理服务器 SDK。详情可以关注30 DAYS OF AZURE MOBILE APPS.

要将数据与特定用户相关联,您可以按照 adrian hall 关于 Data Projection and Queries for C# backend, 30 DAYS OF ZUMO.V2 (AZURE MOBILE APPS): DAY 6 – PERSONAL TABLES 的书 Node.js 后端。