Since we can update an entity using an alternate key:
var entity = new Entity("my_entity", "my_alternate_key", "my_value");
entity["my_updated_field"] = "Update";
service.Update(entity);
I was expecting to be able to delete the same kind of way:
var ref = new EntityReference("my_entity", "my_alternate_key", "my_value");
service.Delete(ref);
But Delete
can only take a Guid
Is there a way to delete a record using a an alternate key ?
I mean without retrieving it before