У меня есть метод, который актер выглядит следующим образом:Service Fabric Actor государственный Actiing Как Queue
ConditionalValue<Command> result = await this.StateManager.TryGetStateAsync<Command>(key);
await this.StateManager.TryRemoveStateAsync(key);
return result.Value;
Когда я вернусь из ActorMethod или позвоните this.SaveStateAsync(), он выбрасывает за исключением следующего:
System.Fabric.FabricException: The given key was not present. ---> System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x80071C13 at System.Fabric.Interop.NativeRuntime.IFabricKeyValueStoreReplica6.Remove
Можете ли вы показать всю трассировку стека? –