从零开始的 Azure .NET 后端?

Azure .NET Backend from Scratch?

Azure 不包含从头开始为移动设备设置 .NET 后端的文档。我一直看到的就是这个 'TodoItem' 示例,它非常令人沮丧。

I'm trying to connect it to an existing Azure SQL DB

The table that I'm trying to retrieve data from is 'UserTable'

这是我的模型的样子:

public class UserTable : EntityData
{
        public int id { get; set; }
        public string Email { get; set; }
        public string UserFName { get; set; }
        public string UserLName { get; set; }

}

现在如何为我的方案创建一个新的后端,而不是在我从 VS2013 创建新的移动支持项目时自动加载的所有这些 TodoItem 项目?网络上没有任何文档。非常感谢!

编辑:

根据我的 iOS 开发人员 He JSON 响应格式如下:

[{
   status:true,
   message: "Successfully Logged in",
   values:{
       email: user@sample.com,
       password: samplepassword,
       accesstoken: 7h234b7b2j
     }
}]

因此,当用户登录时,还需要将访问令牌添加到响应中。

关于如何使用现有 SQL 数据库和移动服务 .NET 后端构建移动服务的非常长且详细的教程位于此 link:https://azure.microsoft.com/en-us/documentation/articles/mobile-services-dotnet-backend-use-existing-sql-database/。有文档,你只需要挖掘一下。

应用服务仍然是新的,尚未记录所有场景,因此返回到移动服务文档会有所帮助。我假设您熟悉 ASP.NET WebAPI,因为这正是 Azure 移动设备(服务或应用程序)的 .NET 后端。如果没有,我建议您从这里开始升级 WebAPI:http://www.asp.net/web-api.