Azure移动服务修补程序实体无法正常工作

时间:2015-06-26 20:06:08

标签: c# web-services azure azure-sql-database azure-mobile-services

我有一个天蓝色的移动服务,在我的控制器中我有一个补丁方法,但是当我从客户端或网络调用服务时(使用试试这个),UpdateAsync方法不起作用,补丁Delta参数没有我认为没有正确的数据,如果我调用patch.GetEntity(),除了id之外,所有字段都是null。 这是我的代码:

    public Task<MyEntity> PatchMyEntity(string id, Delta<MyEntity> patch)
    {
        return UpdateAsync(id, patch);
    }

我正在传递uri中的Id和身体中的实体(使用试试这个):

{
 "user_id": "sample string 1",
  "group_id": 2,
  "doctype_id": 3,
  "prefix": "sample string 4",
  "lastnum": 5,
  "enabled": true,
  "rowguid": "05f3f914-c9d2-493d-8559-0a5e3f616664",
  "id": "sample string 7",
 }

请,建议。

0 个答案:

没有答案