gpt4 book ai didi

c# - 使用备用键删除

转载 作者:行者123 更新时间:2023-11-30 21:39:50 25 4
gpt4 key购买 nike

因为我们可以使用 alternate key 更新实体:

var entity = new Entity("my_entity", "my_alternate_key", "my_value");
entity["my_updated_field"] = "Update";
service.Update(entity);

我期望能够以同样的方式删除:

var ref = new EntityReference("my_entity", "my_alternate_key", "my_value");
service.Delete(ref);

但是Delete只能带一个Guid

有没有办法使用备用键删除记录?

我的意思是之前没有检索到它

最佳答案

您不能使用组织服务通过备用键删除。为此,您需要有相关记录的 GUID(例如,首先检索它)。

可以通过 Web API 使用备用 key 进行删除,如 MSDN 所示:

Any time you need to uniquely identify an entity to retrieve, update, or delete, you can use alternate keys configured for the entity

关于c# - 使用备用键删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45013673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com