0
ServiceProxy
を使用して特定の名前付きパーティションに電話をかける方法を理解できないようで、これに固有のドキュメントはないようです。これは、あなたがInt64RangePartitionInformation
サービスファブリック - ステートフルサービスのために名前付きパーティションを呼び出す
var partitionInformation = (Int64RangePartitionInformation)selectedPartition.PartitionInformation;
var partitionKey = ServicePartitionKey(partitionInformation.LowKey);
IListen listenerClient = ServiceProxy.Create<IListen>(uri,partitionKey);
のためにそれを行うだろう。しかしNamedPartitionInformation
ためServicePartitionKey
を取得する方法があるようには思えない方法です。パーティション名をUri
などに含めますか?
ため息を、それはとても簡単でした。 – jugg1es