2

我有一个用户表,它有一个名为“PictureUri”的字符串类型的属性。默认情况下它为空,然后我将它更新为一些文本。稍后,如果我尝试再次将其更新为 null,则不会发生。更新成功,但字符串属性未更改为 null。我可以将相同的属性更新为其他文本,但不能为空。

天蓝色表存储是否不允许我将属性更新为空?

这是一个示例代码:

模型:

public class User
    {
        public string PictureUri{ get; set; }
        public string Email { get; set; }
        public string Username { get; set; }
    }

[System.Data.Services.Common.DataServiceKey(new string[] { "PartitionKey", "RowKey" })]

    public class PersistedUser : User,ITableEntity
    {
        public string PartitionKey
        {
            get { return this.Email; }
            set { this.Email = value; }
        }

        public string RowKey
        {
            get { return this.Username; }
            set { this.Username = value; }
        }

        public DateTime Timestamp { get; set; }

    }

更新 API

user.PictureUri = null;
  tableServiceContext.AttachTo(TableNames.User, user);
        tableServiceContext.Update(user);
        tableServiceContext.SaveChanges(System.Data.Services.Client.SaveChangesOptions.ReplaceOnUpdate);

        var tempUser = this.tableServiceContext.QueryableEntities.Where(u => u.RowKey.Equals(user.Username, StringComparison.OrdinalIgnoreCase)).FirstOrDefault();

        tableServiceContext.Detach(user);

编辑:

使用 SaveChangesOptions.ReplaceOnUpdate 更新表中的值,但是当我尝试查询它时,它返回旧数据。知道问题可能是什么吗?

4

1 回答 1

3

尝试使用以下内容SaveChanges()ReplaceOnUpdate作为 SaveChangesOption 提供。就像是:

        user.PictureUri = null;
        tableServiceContext.AttachTo(TableNames.User, user);
        tableServiceContext.Update(user);
        tableServiceContext.SaveChanges(SaveChangesOption.ReplaceOnUpdate);
        tableServiceContext.Detach(user);

我认为发生的事情是默认保存选项是“合并”,它不会更改未传递的值(即作为空值传递)。

其他选项可能是设置user.Picture1String.Empty而不是null.

于 2013-05-13T14:12:05.807 回答