How to configure the RequiresDuplicateDetection for AzureServiceBus topics
问题 I am trying to configure the RequiresDuplicateDetection property on the ASB topics to true, but it doesn't appear that the setting on the main IServiceBusFactoryConfigurator is respected: var busControl = Bus.Factory.CreateUsingAzureServiceBus(cfg => { cfg.Host("ASB_ConnectionString"); cfg.SubscriptionEndpoint<ExtractionRequest>("Test", e => { e.LockDuration = TimeSpan.FromMinutes(1); e.MaxAutoRenewDuration = TimeSpan.FromMinutes(5); e.AutoDeleteOnIdle = TimeSpan.FromHours(1); }); cfg